smallbasic / SmallBASIC

SmallBASIC is a fast and easy to learn BASIC language interpreter ideal for everyday calculations, scripts and prototypes. SmallBASIC includes trigonometric, matrices and algebra functions, a built in IDE, a powerful string library, system, sound, and graphic commands along with structured programming syntax
https://smallbasic.github.io
GNU General Public License v3.0
209 stars 37 forks source link

Smallbasic crashes on android #160

Closed grassmik closed 1 year ago

grassmik commented 2 years ago

This code snippet causes smallbasic 12.23 crashes on android:

for i=0 to 100 print i next i input "test", t

Joe7M commented 2 years ago

a workaround until the bug is fixed seems to be:

for i=0 to 100
print i
next i
showpage
input "test", t
chrisws commented 2 years ago

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

chrisws commented 1 year ago

The has been now been released so closing the issue as resolved.