10 lines
117 B
Text
10 lines
117 B
Text
|
|
input "Enter number of seconds to sleep: " ms
|
||
|
|
print "Sleeping..."
|
||
|
|
|
||
|
|
sleep ms
|
||
|
|
//pause ms
|
||
|
|
//wait ms
|
||
|
|
|
||
|
|
print "Awake!"
|
||
|
|
end
|