Getting Started with Rust

Assuming you already know what is Rust and already decided to start learning it. Here are some steps for you to follow:

  1. Take a tour of Rust Syntax and Coding Style and Tour if Rust
  2. Watch some screencasts to get basics of Ownership &Borrowing concept
    http://intorust.com/ or if you understand Portuguese watch Aprenda Rust
  3. Follow this set of runnable examples to understand how everything fit together
    https://doc.rust-lang.org/stable/rust-by-example/
  4. Now it is time to read your first book, you can pick:
  5. Read some real examples
    • Rust Cookbook This Rust Cookbook is a collection of simple examples that demonstrate good practices to accomplish common programming tasks, using the crates of the Rust ecosystem.
    • Anthology
  6. Patterns and Good Practices