4 lines
110 B
Text
4 lines
110 B
Text
(let amount (toNumber (input "ms to sleep for> ")))
|
|
(print "Sleeping...")
|
|
(sys:sleep amount)
|
|
(print "Awake!")
|