To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
CYCLE EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
CYCLE Example
10 ON CYCLE 5 GOTO Here
20 CLEAR SCREEN
30 PRINT "Loop until It is time."
40 LOOP
50 PRINT "Still waiting"
60 WAIT .5
70 END LOOP
80 Here: PRINT "It worked!"
90 PRINT "On cycle interrupts after 5 seconds."
100 END