Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 450 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 450 Bytes

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