Hello World in Rust
Your first step into the world of systems programming with Rust's fearless concurrency and zero-cost abstractions
Step 1: Create a Project
$ cargo new hello-world
$ cd hello-world
$ code .
Step 2: The Code
fn main() {
println!("Hello, world!");
}
fn main() {
println!("Hello, world!");
}