Categories
Programming

Learning something new : RUST lang PART 119 sec read

Note – This is not a tutorial. This is me trying to learn a new language.

This is the book that I am learning rust from –  The Rust Programming Language.

I am using windows, so I had to set the path to rest bin after installing.

Hello world in rust.

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

 

Leave a Reply

Your email address will not be published. Required fields are marked *