let a: &'static str
Justin
- 0 Posts
- 3 Comments
Joined 2 years ago
Cake day: June 10th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Kubernetes is more stable than docker compose. Docker compose is fishing for containers after the ship capsized. Frustrating and nothing works out of the box.
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.