HTBasic Help
×
Menu
Index

ERROR RETURN

Returns program execution to the line following the most recent error.
 
 ERROR RETURN
 
Usage:
IF Done THEN ERROR RETURN
 
 
Description:
ERROR RETURN should only be used in connection with ON ERROR GOSUB. A regular RETURNcauses the line which generated the error to be re-executed. ERROR RETURN skips the line which generated the error and continues execution with the next line.
 
See Also: