Fixed an issue with the input where you can't backspace properly

This commit is contained in:
deadvey
2026-02-14 16:04:57 +00:00
parent 26ee45eb88
commit cfe570c531
3 changed files with 28 additions and 7 deletions

9
data/fb.bas Normal file
View File

@@ -0,0 +1,9 @@
FOR A = 1 TO 100
PRINT A ;
B = A % 3
C = A % 5
IF B = 0 then PRINT "Fizz" ;
IF C = 0 then PRINT "Buzz" ;
PRINT ""
NEXT A
END