RosettaCodeData/Task/Memory-allocation/Go/memory-allocation-2.go

5 lines
54 B
Go

func inc(n int) *int {
x := n + 1
return &x
}