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