4 lines
78 B
Go
4 lines
78 B
Go
func three() *int {
|
|
i := 3
|
|
return &i // valid. no worry, no crash.
|
|
}
|