Installation

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Use cargo for project management and running the application.

Hello World

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