Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 451 Bytes

File metadata and controls

8 lines (6 loc) · 451 Bytes

Learning Rust

A repository to play with the Rust language.

Hello World

The Hello World directory hosts the obligaotry Hello World program. Point to note is that the println statement is a macro rather than a function call. This is denoted by the exclamation mark.

Hello Cargo

This is the hello world application created with the cargo build system. cargo build creates the debug version. cargo build --release creates the release version.