WAITS FOR N MILLISECONDS, BUT PROGRAM REMAINS ACTIVE
ACTION
The command PAUSE N freezes the program execution for N milliseconds. The waiting actions are processed.
SYNTAX:
PAUSE N
USE ERROR EXAMPLE
dim i
print "display number from 1 to 10 every one second"
for i=1 to 10
print i:pause 1000
next i
PAUSE
PAUSE N
SEE ALSO
DISPLAY
WAIT