RosettaCodeData/Task/Pointers-and-references/Go/pointers-and-references-5.go
2023-07-01 13:44:08 -04:00

4 lines
78 B
Go

func three() *int {
i := 3
return &i // valid. no worry, no crash.
}