-33
Rust trojan horse
(thelemmy.club)
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.
Rust is often treated like it has a split between mutable and immutable state, but it's really a split between unique and shared state. Shared state can be mutated if certain invariants are held, which types that provide "interior mutability" as its called enforce.
https://doc.rust-lang.org/reference/interior-mutability.html