this post was submitted on 18 Dec 2025
341 points (98.9% liked)
Programmer Humor
39950 readers
74 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It's worse than that. In C++, if you fail to catch an exception, then std::terminate() is called. In Rust the only options are roughly equivalent to C++ noexcept, or std::terminate() [panic in Rust]. There's nothing in between.
i've been meaning to get into rust; but i'm learning that i lack motivation if it's not part of my job and becoming a sysadmin again doesn't require it.