Hacker News new | ask | show | jobs
by jimmygrapes 1592 days ago
Reminds me of BASIC best practices:

    ON ERROR GOTO handler
    [try code here] 
    GOTO finally

    handler:
    [catch code here]

    finally:
    [finally code here]