8 lines
142 B
Text
8 lines
142 B
Text
#APPTYPE CONSOLE
|
|
DIM %msec
|
|
PRINT "Milliseconds to sleep: ";
|
|
%msec = FILEGETS(stdin, 10)
|
|
PRINT "Sleeping..."
|
|
SLEEP(%msec)
|
|
PRINT "Awake!"
|
|
PAUSE
|