Memory is a simple package that provides helper functions to interact with the computer's memory from go.
package main
import (
"fmt""github.com/notwithering/memory"
)
funcmain() {
// data you do not want to be stored into memory for longvarinfostring="my super secret password"// zero out the datamemory.Zero(&info)
// there is no data to even printfmt.Println(info)
}