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