Sleep: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "SLEEP milliseconds '''Description''' SLEEP pauses execution of the program for a period of time equal to milliseconds. The program does not yield the event loop: execution w...")
 
No edit summary
Line 1: Line 1:
SLEEP milliseconds
Sleep milliseconds


'''Description'''
== Description ==


SLEEP pauses execution of the program for a period of time equal to milliseconds. The program does not yield the event loop: execution will continue on the next statement.
Sleep pauses execution of the program for a period of time equal to milliseconds. The program does not yield the event loop: execution will continue on the next statement.


'''Example'''
== Example ==


<pre>
<pre>
REM SLEEP Example
Rem Sleep Example
'Pause execution for 5 seconds
'Pause execution for 5 seconds
Sleep 5000
Sleep 5000
</pre>
</pre>
[[Category:Language Reference]]

Revision as of 03:18, 17 August 2012

Sleep milliseconds

Description

Sleep pauses execution of the program for a period of time equal to milliseconds. The program does not yield the event loop: execution will continue on the next statement.

Example

Rem Sleep Example
'Pause execution for 5 seconds
Sleep 5000