void Delay( int nMilliseconds )
int nMilliseconds
The number of milliseconds to delay.
This module stalls program execution by the specified number of milliseconds. There is no functional difference between this module and the method Runtime.Delay.
Important: Do not use this module to delay for more than a few seconds.
print "Start"; run Delay( 1000 ); print "Finished";