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