Creating confusion with octal literals
Any integer literal in Go that begins with a 0
is considered to be an octal
Mistake
// This equals 108, not 110
sum := 100 + 010
Fix
Use the long form prefix 0o
for describing octals
sum := 100 + 0o10
Any integer literal in Go that begins with a 0
is considered to be an octal
// This equals 108, not 110
sum := 100 + 010
Use the long form prefix 0o
for describing octals
sum := 100 + 0o10