7 lines
190 B
Text
7 lines
190 B
Text
def sleep(milliseconds :int, nextThing) {
|
|
stdout.println("Sleeping...")
|
|
timer.whenPast(timer.now() + milliseconds, fn {
|
|
stdout.println("Awake!")
|
|
nextThing()
|
|
})
|
|
}
|