RosettaCodeData/Task/User-input-Text/Commodore-BASIC/user-input-text.basic

9 lines
283 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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