Variables
Learn how Go handles variables.
What's Covered
- Variable declaration — all the ways to declare variables, zero values,
:=vsvar, and naming rules - Variable shadowing — when inner-scope declarations hide outer variables and how to avoid it
- Types —
bool, integers, floats,string,byte,rune, and complex numbers
More pages coming soon: scope.