HTBasic Help
×
Menu
Index

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