2 lines
111 B
Go
2 lines
111 B
Go
var p *int // declare p to be a pointer to an int
|
|
i = &p // assign i to be the int value pointed to by p
|