blob: ee7321378c34bff45d4b2dd5ce90af9cbb7de410 [file]
Addition and subtraction :
1 + 1 = 2
2 - 1 = 1
Multiplication, division, and modulus :
5 % 2 = 1
5 % 0 = $rem2
7 % 2 = 1
5 / 2 = 2
5 / 0 = $rem4
5 * 2 = 10
5 * -1 = -5
5 * -2 = -10
5 * -2 = -10
And now null nodes to make sure it doesn't throw an NPE :