Search Apps Documentation Source Content File Folder Download Copy Actions Download

arrayalias.gno

0.17 Kb · 14 lines
 1package arrayalias
 2
 3import "strconv"
 4
 5var arr [3]int
 6
 7func ModifyLocalCopy() {
 8	local := arr
 9	local[0] = 999
10}
11
12func Render(_ string) string {
13	return strconv.Itoa(arr[0])
14}