To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
ERROR RETURN EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
ERROR RETURN Example
10 ON ERROR GOSUB Here
20 CLEAR SCREEN
30 CAUSE ERROR 0
40 PRINT "Skip error"
50 STOP
60 Here: PRINT "On";I;"- Intercepted error";ERRN
70 ERROR RETURN
80 PRINT "This line is never reached."
90 END