Skip to content
This repository was archived by the owner on Aug 27, 2021. It is now read-only.
JBtje edited this page Sep 17, 2015 · 1 revision

Syntax

DELAY <time in ms>

Description

The DELAY command allows you to pause the script for x miliseconds.

Example

NEW
10 A = 1
30 PRINT A
20 DELAY 1000
30 PRINT A+1
LIST

Returns:

1
...waiting 1 second
2

Clone this wiki locally