HTBasic Help
×
Menu
Index

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