Welcome to Comprehensive Rust 🦀
This is a four day Rust course developed by the Android team. The course covers the full spectrum of Rust, from basic syntax to advanced topics like generics and error handling. It also includes Android-specific content on the last day. The goal of the course is to teach you Rust.
https://google.github.io/comprehensive-rust
Sylvain Kerkour
(Ab)using technology for fun & profit. Programming x Hacking x Entrepreneurship. By Sylvain Kerkour, creator of Bloom and author of Black Hat Rust.
https://kerkour.com/

Tour of Rust - Let's go on an adventure!
Welcome to the Tour of Rust. This is meant to be a step by step guide through the features of the Rust programming language
https://tourofrust.com/02_ko.html
The Cargo Book
This section provides a quick sense for the cargo command line tool. We demonstrate its ability to generate a new for us, its ability to compile the within the package, and its ability to run the resulting program. To start a new package with Cargo, use cargo new: $ cargo new hello_world Cargo defaults to --bin to make a binary program.
https://doc.rust-lang.org/cargo/getting-started/first-steps.html

Seonglae Cho