RosettaCodeData/Task/Sleep/Factor/sleep.factor

8 lines
150 B
Factor
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
USING: calendar io math.parser threads ;
: read-sleep ( -- )
readln string>number seconds
"Sleeping..." print
sleep
"Awake!" print ;