/hello-lang-Rust

Hello World! in Rust

Primary LanguageRustThe UnlicenseUnlicense

Rust

Hello World! in Rust

Installing the toolchain

Rust provide quick way of instaling rust toolchain {rustc, rustup, cargo, etc } via a script

Linux/Unix based systems

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

Windows

see rustup.rs

Building the example

cargo build

For dry run use

cargo check

Running the example

cargo run