Table of Contents
The subtraction operator. It is both a unary and a binary operator. This means that,
a - b
will subtract b from a. As well as negate values such that
-a = (-1) * a
This can only be performed on integers. See this in action here.