5 lines
54 B
Go
5 lines
54 B
Go
|
|
func inc(n int) *int {
|
||
|
|
x := n + 1
|
||
|
|
return &x
|
||
|
|
}
|