RosettaCodeData/Task/Sleep/BASIC256/sleep.basic

7 lines
101 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
print "Enter number of seconds to sleep: ";
input ms
print "Sleeping..."
pause ms
print "Awake!"
end