9 lines
283 B
Plaintext
9 lines
283 B
Plaintext
10 input "what is a word i should remember";a$
|
|
20 print "thank you."
|
|
30 input "will you please type the number 75000";nn
|
|
40 if nn<>75000 then print "i'm sorry, that's not right.":goto 30
|
|
50 print "thank you.":print "you provided the following values:"
|
|
60 print a$
|
|
70 print nn
|
|
80 end
|