package mem import "strconv" type Ptr uint64 func (p Ptr) String() string { val := strconv.FormatUint(uint64(p), 10) return "@" + val }