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