Golang operators

From wikinotes

Arithmetic

Go requires that all variables involved in arithmetic are the same type.
(ex. uint8 + unit16 would fail to compile)

1 + 1 // addition
1 - 1 // subtraction
1 * 1 // multiplication
1 / 1 // division
1 % 1 // modulus