HTBasic Help
×
Menu
Index

on cycle Example

10    ON CYCLE 5 GOTO Here  !After 5 seconds, go to line 70.
20    CLEAR SCREEN
30    LOOP
40      PRINT "Still waiting"
50      WAIT 1
60    END LOOP
70 Here: PRINT "ON CYCLE worked."
80    END