Updated to now support integer division, fix operator precedence and add loops! DO LOOP, WHILE WEND and FOR NEXT all supported. This means it can now run programs like this:const MAGIC_NUMBER = 17
print "Guess the number"
print "I'm thinking of a number, can you guess what it is?"
do
input "Your guess: ", guess%
if guess% > MAGIC_NUMBER then print "Nope,"; guess%; "is too high."
if guess% < MAGIC_NUMBER then print "Nope,"; guess%; "is too low."
loop while guess% <> MAGIC_NUMBER
print "Yes, you got it!"