7 lines
221 B
Text
7 lines
221 B
Text
|
|
'---The SLEEP command takes milliseconds by default but we will adjust it
|
||
|
|
PRINT "Enter a number for each second you want to wait\nthen press Enter "
|
||
|
|
INPUT millisec
|
||
|
|
PRINT "Sleeping..."
|
||
|
|
SLEEP millisec * 1000
|
||
|
|
PRINT "Awake!"
|