Rust - Hello World

·

1 min read

Rust is a blazingly-fast and memory-safe general purpose programming language. Here is a Hello World program in Rust:

fn main() {
    println!("Hello, world!")
}

Output:

Hello, world!

In the following posts, I'll be writing more about Rust so stay tuned.