Added input ability to BASIC

This commit is contained in:
deadvey
2026-02-09 21:59:35 +00:00
parent e4fc63134f
commit 26ee45eb88
4 changed files with 20 additions and 13 deletions

View File

@@ -1,4 +1,5 @@
FOR A = 1 TO 10
PRINT A
NEXT A
PRINT "What's your name?"
INPUT $1
PRINT "Hello " ;
PRINT $1
END