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

6 lines
109 B
Smalltalk
Raw Permalink Normal View History

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