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

References