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