To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
off error EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
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