Hello_World.rs
fn main() {
println!("Hello, World!");
}
#Compiling and Running
$ rustc Hello\_World.rs
$ ./Hello\_World
Hello, World!
Comments
fn main() {
println!("Hello, World!");
}
$ rustc Hello\_World.rs
$ ./Hello\_World
Hello, World!