this post was submitted on 08 Mar 2025
14 points (93.8% liked)

Rust Programming

8640 readers
3 users here now

founded 6 years ago
MODERATORS
 

Hey fellas, I am new to Rust! I have been following the rustlings tutorial + the rust online book, and I have just purchased the book "Rust for Rustaceans: Idiomatic Programming For Experienced Developers".

While I am NOT an experienced developer, I have worked in languages such as Java, Python, and a little bit of C before, and my schooling was in information technology for computer systems infrastructure so most of the ideas are not too foreign to me (except for ownership in rust, which from what I have been reading is super cool, though it throws a wrench into how I might usually write something while opening some other doors).

I am interested in learning, so I wanted to ask if, in addition to the resources I have selected above, is there anything else I should add to try to supplement my learning, or are those reasonably acceptable?

I am also glad to hear any tidbits, advice, or suggestions otherwise.

Thank you.

top 8 comments
sorted by: hot top controversial new old
[–] Bogasse@lemmy.ml 5 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

I recall that the Rust book is awesome, it should cover everything essential! I don't know the other two, but rustlings probably follows the same path and might be a good sidecar for exercising :)

Good luck in your journey!

[–] golden_zealot@lemmy.ml 1 points 3 weeks ago

Thanks! The Rustlings course is interesting because it kind of presents you with code to fix without having explained how to fix it.

This is kind of fun because I get to try to apply my knowledge from other languages to see if similar things exist in rust.

Otherwise, there is a hint feature to help you along. They also recommend following along with the Rust book when doing it, which I have been, so it has been quite informative!

[–] FBJimmy@lemmus.org 3 points 3 weeks ago (1 children)
[–] golden_zealot@lemmy.ml 1 points 3 weeks ago

Awesome, thank you! I had not yet looked for any video tutorials, so this is great!

[–] nous 3 points 3 weeks ago (1 children)

What you have listed is a good start. https://www.rust-lang.org/learn has additional resources as well once you have gotten through those.

[–] golden_zealot@lemmy.ml 1 points 3 weeks ago

Wonderful, thank you!

[–] commander@lemmings.world 2 points 3 weeks ago (1 children)

My biggest advice when learning Rust is to use it the way you would use any other language. Learning about its advanced and unique features will likely distort how often you will be using or coming across them.

Rust is a very powerful and friendly language without using complicated things like boxes, dyns, refcells, rcs, arcs, etc. When you come across the need to use those features, they will make a lot more sense because you will see how they are relevant to your specific task at hand.

[–] golden_zealot@lemmy.ml 2 points 3 weeks ago

Thank you, this is great information.