Creating first Rust Project
1. Create the Project
cargo new rust_playground
cd rust_playgroundcode .
2. Edit the Rust Program
fn main() { println!("Hello, world!"); }
3. Run the Rust Program
Summary
Last updated