Library /sys$common/syshlp/basichelp.hlb CONTINUE *Conan The Librarian (sorry for the slow response - running on an old VAX) |
The CONTINUE statement causes BASIC to clear an error condition and resume execution. The CONTINUE statement must appear lexically inside of a handler. Example HANDLER err_handler SELECT ERR CASE = 50 PRINT "INSUFFICIENT DATA" CONTINUE CASE ELSE EXIT HANDLER END SELECT END HANDLER
Additional Information (explode) :
|