Try/Catch/EndCatch questions

This code:

try
    message a    ; a is not defined
catch
    message "abc"
endcatch
message c    ; c is not defined

should give an error message that c is not defined. Instead, it gives the message, “abc” which means that the error has been picked up by the try statement, even though that code loop has finished.

Can this be verified?

Belay that post.

14 posts were split to a new topic: Message Statements in a Closed Loop