To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
on delay EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
on delay Example
10 CLEAR SCREEN
20 ON DELAY 3 GOTO Here ! Wait 3 seconds.
30 PRINT "I shall wait 3 seconds."
40 Loop: GOTO Loop
60 Here: PRINT "ON DELAY worked."
70 END