11 lines
232 B
Text
11 lines
232 B
Text
while 1
|
|
choose = int(RND(0) * 9) + 1
|
|
while guess <> choose
|
|
print "Guess a number between 1 and 10: ";: input guess
|
|
if guess = choose THEN
|
|
print "You guessed!"
|
|
else
|
|
print "Sorry, try again"
|
|
end if
|
|
wend
|
|
wend
|