This repository contains code that I have written on my journey learning the Rust programming language. Hence I am calling it 'Rusting-Up'.
Created a first conventional Hello World program, and then the same program, but using Cargo. Learnt about some Rust program conventions, and some command lines. Finished Chapter 1.
Jumped to Chapter 3. Finished testing out different scenarios possible with immutable variables, making them mutable, and shadowing variables. Also tested constants.
Learnt about integer scalar data type.
Learnt about floating point scalar data type.
Learnt about the remaining scalar types- character and boolean variables. Then learnt about the Compound type variables- Tuples and Arrays.
Learnt about Rust functions.
Learnt about basic comments in Rust and added comments to the functions project.