RosettaCodeData/Task/Sleep/Smalltalk/sleep-1.st

5 lines
157 B
Smalltalk
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
t := (FillInTheBlankMorph request: 'Enter time in seconds') asNumber.
Transcript show: 'Sleeping...'.
(Delay forSeconds: t) wait.
Transcript show: 'Awake!'.