this post was submitted on 10 Nov 2024
201 points (95.5% liked)

Programmer Humor

32690 readers
332 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] stetech 4 points 1 month ago* (last edited 1 month ago) (1 children)

You cannot make a safe yet universal cutting tool.

I’m neither language designer or crustacean advocate, but from what can be read, Rust seems to have managed just fine. The trick is probably to allow removing the cover of the sharp edge when needed (execute unsafe).

[–] [email protected] 2 points 2 weeks ago

Also, Rust allows "unsafe" code for when it's absolutely necessary; you DO need to add a line that basically says "I know compiler, don't stop me". To keep up the metaphor; Rust allows you to cut yourself with the knife, but ensures you're fully aware of what you're doing.