this post was submitted on 11 Oct 2025
274 points (96.3% liked)

Programmer Humor

27193 readers
1034 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 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ytg@sopuli.xyz 2 points 3 weeks ago

The Either monad (also known as Result) provides Go-like error handling, but automated. You only check manually for errors after the last call, the monad handles the process.

But this is just one example of a monad, there are many more.