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