Rust

Hello, World!

Now that you’ve installed Rust, it’s time to write your first Rust program. It’s traditional when learning a new language to write a little program that prints the text Hello, world! to the screen, so we’ll do the same here!

"Hello, World!" program

Filename: main.rs

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