Numerics
A numeric type represents a set of integer or floating point values.
Floating point is the name given to numerical fractions.
var a int = 1 // Integer
var b float32 = 3.1415 // Floating point
c := 3.0
A list of all numeric types can be found
here.