RosettaCodeData/Task/Pointers-and-references/Go/pointers-and-references-5.go

5 lines
78 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
func three() *int {
i := 3
return &i // valid. no worry, no crash.
}