Fixed a small math error

Before: 2 -1 = 0
After: 2 - 1 = 1
This commit is contained in:
caminsha 2020-02-25 22:46:04 +01:00
parent 8f3c99bb9e
commit 3f32649dd8

View File

@ -140,7 +140,7 @@ SomeRandomClass myObjectInstantiated = new SomeRandomClass();
// Arithmetic
1 + 1 // 2
2 - 1 // 0
2 - 1 // 1
2 * 3 // 6
3 / 2 // 1
3.0 / 2 // 1.5