Search Apps Documentation Source Content File Folder Download Copy Actions Download

ptrwrite.gno

0.12 Kb · 6 lines
1package ptrwrite
2
3var gValue = "original"
4
5func GetPtr() *string { return &gValue }
6func GetValue() string { return gValue }