SmallBASIC
SmallBASIC copied to clipboard
Smallbasic crashes on android
This code snippet causes smallbasic 12.23 crashes on android:
for i=0 to 100 print i next i input "test", t
a workaround until the bug is fixed seems to be:
for i=0 to 100
print i
next i
showpage
input "test", t
Thanks so much for reporting this!
I've seen the corresponding stack trace in the android studio reports, but never found out how to replicate it until now
The has been now been released so closing the issue as resolved.