cargo new rust cd rust/src vi main.rs
fn main() { println!("Hello, world!"); }
cd ../ cargo build
cargo run
cargo check