RosettaCodeData/Task/User-input-Text/Commodore-BASIC/user-input-text.basic
2023-07-01 13:44:08 -04:00

8 lines
283 B
Text

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