Simple “Hello World!” example using the ‘Rust’ programming language
Details on installation and setup are available on the official Rust website - https://www.rust-lang.org/learn/get-started
Rust is built using the cargo
command-line tool and the following steps can be followed to create from scratch.
$ cargo new helloworld
Or
$ mkdir helloworld
$ cd helloworld
$ cargo init
$ cargo build
$ cargo run