RosettaCodeData/Task/Sleep/Smalltalk/sleep-2.st
2023-07-01 13:44:08 -04:00

4 lines
144 B
Smalltalk

t := (Dialog request: 'Enter time in seconds') asNumber.
Transcript show: 'Sleeping...'.
(Delay forSeconds: t) wait.
Transcript show: 'Awake!'.