7 lines
99 B
Text
7 lines
99 B
Text
|
|
PRINT "Enter number of seconds to sleep";
|
||
|
|
INPUT ms
|
||
|
|
PRINT "Sleeping..."
|
||
|
|
PAUSE ms
|
||
|
|
PRINT "Awake!"
|
||
|
|
END
|