this post was submitted on 27 Apr 2024
107 points (96.5% liked)

Rust

5778 readers
38 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
 

This was a really good summary of what Rust feels like in my opinion. I'm still a beginner myself but I recognize what this article is saying very much.

The hacker news comments are as usual very good too:

https://news.ycombinator.com/item?id=40172033

you are viewing a single comment's thread
view the rest of the comments
[–] asdfasdfasdf@lemmy.world 4 points 4 months ago (1 children)

Ive used Rust professionally for six years now and have done many quick hacks. It is really easy to do. Basically just don't use references / clone everything to avoid lifetime and ownership issues, and use unwrap everywhere to avoid proper error handling. It's really that easy almost all the time.

The nice thing about that is once you're done with the prototype, just remove the unwraps and you can optimize stuff by removing the clones.

[–] kaffiene@lemmy.world 2 points 4 months ago (1 children)

Well perhaps my experience in game dev and the OP's are just wrong