Hack-a-Day / basic-badge

2018 Hackaday Belgrade Hardware Badge
MIT License
36 stars 8 forks source link

print var doesn't print anything #30

Closed szczys closed 6 years ago

szczys commented 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.

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

jaromir-sukuba commented 6 years ago

Oh this one was really suprising. Should be OK since 0.36, please try it.

szczys commented 6 years ago

Testing and working.