RosettaCodeData/Task/User-input-Text/Forth/user-input-text-6.fth

7 lines
176 B
Forth
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
: TEST
." Enter your name: " 80 INPUT$ CR
." Hello there, " TYPE CR
." Enter a number: " INPUT# CR
IF ." Your number is " .
ELSE ." That's not a number!" THEN CR ;