Rust - Hello, World!
Rust is a memory-safe, muli-paradigm and general-purpose programming language.
Rust Installation
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
The "Hello, World!"
// main.rs
fn main() {
println!("Hello, World!");
}
$ rustc main.rs
$ ./main