Hello World! in Rust

Rust, known for its focus on safety and performance, starts with a warm 'Hello, World!' greeting.

Hello World! in Rust
Photo by Roman Synkevych / Unsplash

Rust, known for its focus on safety and performance, starts with a warm 'Hello, World!' greeting:

fn main() {
    println!("Hello, World!");
}