Learning Rust 101
# Traverse into the directory
cd <add_directory_name>
# Compile the program using the following command
rustc main.rs
# Run the program using the following command
./main
- The ! calls a rust macro - not a function
- In order to compile the programme - rustc main.rs
- To run the programme - ./main