RosettaCodeData/Task/User-input-Text/Oforth/user-input-text.oforth
2016-12-05 23:44:36 +01:00

8 lines
210 B
Text

import: console
: testInput{
| s n |
System.Console askln ->s
while (System.Console askln asInteger dup ->n isNull) [ "Not an integer" println ]
System.Out "Received : " << s << " and " << n << cr ;