Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Rust

An introductory course covering Rust’s core concepts. Rust is a systems language that guarantees memory safety without a garbage collector through its ownership model.

Course outline

Resources

Install

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup update
cargo new hello_world
cargo build
cargo run
cargo test