Hacker News new | ask | show | jobs
by iand 4594 days ago
i := 3 means declare i to be an "int", which is the default numeric type. The size of that int will vary from platform to platform. See http://golang.org/ref/spec#Numeric_types
1 comments

Awesome, thanks!