Hacker News new | ask | show | jobs
by gertef 4703 days ago
Checked exceptions are harder to ignore :-)

    result, _ = someFunc()
1 comments

Huh?

   try {
      result = someFunc()
   } catch {}