V1.08: Bug in arithmetic operators with numbers less than 1
Posted: Mon Nov 02, 2015 12:58 pm
If any number less than 1 is assigned to a variable and then any arithmetic on that variable will treat it as zero
e.g.
x = 0.5
y = 2.0 + x 'same for x + 2.0 and also all other operators
print x
print y
prints:
0.5
2.00
e.g.
x = 0.5
y = 2.0 + x 'same for x + 2.0 and also all other operators
print x
print y
prints:
0.5
2.00