327
Why make it complicated?
(lemmy.ml)
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.
Yeah, I mean Rust is only verbose if you want it to be.
let foo = "bar";
is valid rust too, no need to declare the type and definitely no need to declare the lifetime.For that matter, if you ever declare something as explicitly
'static
in code that isn't embedded or super optimized, you're probably doing it wrong.