RosettaCodeData/Task/User-input-Text/Smalltalk/user-input-text.st

6 lines
109 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
'Enter a number: ' display.
a := stdin nextLine asInteger.
'Enter a string: ' display.
b := stdin nextLine.