5 lines
152 B
Text
5 lines
152 B
Text
|
|
seconds:=ask("Seconds to sleep: ").toFloat();
|
||
|
|
println("Sleeping...");
|
||
|
|
Atomic.sleep(seconds); # float, usually millisecond resolution
|
||
|
|
println("Awake!");
|