Gentle Introduction to Rust

This is a tutorial based on this link

// hello.rs
fn main() {
    println!("Hello, World!");
}
$ rustc hello.rs
$ ./hello
Hello, World!