Hacker News new | ask | show | jobs
by vardump 4209 days ago
Gotos are nowhere near as hard to debug as exceptions.
1 comments

How's that? To debug GOTOs you have to place breakpoints on each possible detection of error (or at a shared trampoline). To debug exceptions, you just enable first-chance exception handling for the kind of exception you're interested in and you're done.