HTBasic Help
×
Menu
Index

off error Example

10    !This program should cause an error.
20    ON ERROR GOTO Here
30    PRINT "I want to get an error."
40    CAUSE ERROR 80
50    STOP
60 Here: PRINT "Program should reach here when it errors."
70    CLEAR ERROR
80    END