Skip to content

Instantly share code, notes, and snippets.

@kron4eg
Last active December 23, 2015 03:59
Show Gist options
  • Save kron4eg/6577114 to your computer and use it in GitHub Desktop.
Save kron4eg/6577114 to your computer and use it in GitHub Desktop.
package main
import "fmt"
type Person struct {
Name string
}
func main() {
p := Person{"Ijonas Kisselbach"}
p1 := &p
p2 := &p
fmt.Printf("%p\n", &p1) // 0xc200000018
fmt.Printf("%p\n", &p2) // 0xc200000020
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment