top | item 30278826

(no title)

TheSockStealer | 4 years ago

Used like this, it is not much different than a try-catch block

discuss

order

SXX|4 years ago

Yeah and it's make sense to use it this way since there is no try-catch in C.

jimmygrapes|4 years ago

Reminds me of BASIC best practices:

    ON ERROR GOTO handler
    [try code here] 
    GOTO finally

    handler:
    [catch code here]

    finally:
    [finally code here]