this post was submitted on 25 Jul 2023
1052 points (98.2% liked)

Programmer Humor

19187 readers
1306 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
[–] JakeHimself@programming.dev 8 points 1 year ago (1 children)

Would know, I've never had a runtime error in Rust /s

[–] eth0p@iusearchlinux.fyi 3 points 1 year ago (1 children)

Can't have a runtime error if you don't have a compiled binary *taps forehead*

(For the record, I say this as someone who enjoys Rust)

[–] asdfasdfasdf@lemmy.world 1 points 1 year ago

This is actually unironically a major benefit of Rust - compile time errors are supposed to be for dev mistakes and runtime errors supposed to be for user mistakes. Way easier to debug something at compile time instead of runtime.