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