# Rust Langugage current: https://doc.rust-lang.org/book/ch04-01-what-is-ownership.html ## Shell Compile a single file. ```bash $ rustc main.rs ``` Create a new cargo project: ```bash $ cargo new hello_world ``` Build a cargo project: ```bash $ cargo build ``` Run a cargo project: ```bash $ cargo run ``` Check for errors in a cargo project: ```bash $ cargo check ``` ## Standard Library * [Docs][1] [1]: https://doc.rust-lang.org/std/prelude/index.html