this post was submitted on 14 Aug 2023
1370 points (98.0% liked)

Programmer Humor

18961 readers
1104 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 20 points 1 year ago (1 children)

It's better than "invisible" exceptions, but it's still the worst "better" version. The best solution is some version of the good old Result monad. Rust has the BEST error handling (at least in the languages i know). You must handle Errors, BUT they are just values, AND there's a easy, non-verbose way of passing on the error (the ? operator).

[โ€“] [email protected] 1 points 1 year ago* (last edited 1 year ago)

Beyond a quick "hello world" when it came out, I've never used rust, but that sounds pretty great