rename from biscuit to bisquit

This commit is contained in:
Hans 2021-11-17 19:39:02 +01:00
parent dbfdde72ab
commit 54bbaff3ea
7 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,13 @@
PRINT "Welcome to the number guessing game!"
RAND 100 number
NUMIN "Please input your guess!" guess
EQUAL number guess is_equal
GOTO 12 is_equal # win if equal
SUB number guess is_less
GOTO 10 is_less
PRINT "Too big! Try again!"
GOTO 3 1
PRINT "Too small! Try again!"
GOTO 3 1
PRINT "Correct! The number was " number "."
EXIT