HTBasic Help
×
Menu
Index

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