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:

founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] mkwt@lemmy.world 3 points 3 weeks ago (1 children)

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.

[โ€“] eldavi@lemmy.ml 1 points 3 weeks ago

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.