7 lines
150 B
Factor
7 lines
150 B
Factor
USING: calendar io math.parser threads ;
|
|
|
|
: read-sleep ( -- )
|
|
readln string>number seconds
|
|
"Sleeping..." print
|
|
sleep
|
|
"Awake!" print ;
|