README ¶ golang-api-with-react Pointers and Memory Allocation package main import "fmt" func main() { var x int = 5 fmt.Println("x | address:", &x) fmt.Println("x | value:", x) var p *int = &x fmt.Println("p | address:", &p) fmt.Println("p | address -> x:", p) fmt.Println("p | value: -> x:", *p) } Expand ▾ Collapse ▴ Documentation ¶ There is no documentation for this package. Source Files ¶ View all Source files main.go Click to show internal directories. Click to hide internal directories.