Closed szczys closed 6 years ago
10 let i=1 20 print i
returns to prompt but nothing is printed. If you make it 20 if i=1 then print "true" it works.
20 if i=1 then print "true"
Also just found another peculiar bug:
10 let i=1 20 print i 30 if i=5 then print "nope" 40 if i=1 then print "true"
results in output 5 thPtrue
5 thPtrue
Oh this one was really suprising. Should be OK since 0.36, please try it.
Testing and working.
returns to prompt but nothing is printed. If you make it
20 if i=1 then print "true"
it works.Also just found another peculiar bug:
results in output
5 thPtrue