package main import ( "fmt" ) type Node struct { next *Node } func main() { n := &Node{} fmt.Printf("%p , left = %x\n", n, n.next) }