HTBasic Help
×
Menu
Index

resume interactive Example

10    X=5
20    ON TIME (TIMEDATE+X) MOD 86400 GOTO Here
30    PRINT "I'll wait";X;"seconds. Keys disabled."
40    SUSPEND INTERACTIVE
50 Loop: GOTO Loop
60 Here: RESUME INTERACTIVE
70    PRINT "Test done."
80    END