Sleep

From NSB App Studio
Revision as of 23:41, 8 July 2012 by Brendon (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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