diff --git a/main.go b/main.go index 28f37e0..5987588 100644 --- a/main.go +++ b/main.go @@ -4,6 +4,12 @@ import ( "fmt" ) +type user struct { + name string + age int +} + func main() { fmt.Println("hello") + fmt.Println(&user{name: "John Doe"}) }