8 lines
145 B
Text
8 lines
145 B
Text
|
|
do
|
||
|
|
t = eval[input["Enter amount of time to sleep: ", "1 second"]]
|
||
|
|
while ! (t conforms time)
|
||
|
|
|
||
|
|
println["Sleeping..."]
|
||
|
|
sleep[t]
|
||
|
|
println["Awake!"]
|