Skip to content
On this page

🎉

go
func main() {
	a := 1
	ptr := &a
	fmt.Println("a == *ptr") // a == *ptr true
}