Rust is a systems programming language that emphasizes safety and performance.
rustup (recommended).cargo new hello-world
Creating a new Rust project with cargo.
println!("Hello, world!");
Simple "Hello World" program in Rust.
cargo run
Compile and execute your first Rust program.