Compiling Rust :
rustc <file_name>.rs
Cargo CLI :
cargo new <project_name> # to create new project
cargo build # to build the project
cargo run # to run the project
cargo check # to quick check on the code
cargo update # to update the dependencies
Concepts :
- Common Programming Concepts
- Variables
- Data Types
- Functions
- Ownership Concepts
- Guessing Game
- Libraries
- I/O
- Structs Implementation
- Structs
- Methods
- Enums
- Enums
- Type Definitions
- Common Collections
- Vector
- Hash Map
- Error Handling
- Panic mode
- Error Kind
- Options
- Options