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

3 lines
111 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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