HACKER Q&A
📣 _Crownwell

What are the best resources to learn Rust in 2025?


What are the best resources to learn Rust in 2025?


  👤 dcminter Accepted Answer ✓
[delayed]

👤 blackbear_
Maybe controversial, but if you already know how to program then doing a small project with a LLM is the fastest and most efficient way. Ask it to implement something, then go read the documentation to understand what is going on. After you got the hang of it, try to implement something yourself and ask the LLM to rewrite it in an idiomatic way.

This worked for me after several failed attempts at learning Clojure in the pre-LLM era.


👤 roland35
The Rust book is a great place to start. Free and pretty short! After that I’d get a project focused book like zero to production rust, or command line rust.

Lastly I recommend reading Programming Rust. It is long but extremely thorough! You’ll understand the language at a deep level. Good luck and have fun!


👤 revskill
Learn how to learn first, it's simply the MOST important thing you can master.

After that, every problem is a nail.


👤 rittik
I started learning Rust just last week. I went through the basic syntax, watched a few youtube videos, read some blog posts and then decided to build something real even if I didn’t understand everything yet.

I ended up making a CLI tool to generate seed phrases for bitcoin wallets. This helped me learn concepts way faster. I did use Claude a lot for help but that’s part of how I learn right now.

That said I’m planning to rely less and less on LLMs as I get more comfortable with the language and I think if you’re already familiar with another language this approach might work well for you too.