https://github.com/ocdbytes/rustlang
Rust Programming Language | Ownership | Error Handling | Struct | Methods | HashMap
https://github.com/ocdbytes/rustlang
Last synced: 7 months ago
JSON representation
Rust Programming Language | Ownership | Error Handling | Struct | Methods | HashMap
- Host: GitHub
- URL: https://github.com/ocdbytes/rustlang
- Owner: ocdbytes
- Created: 2023-04-07T06:56:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-16T16:02:41.000Z (over 2 years ago)
- Last Synced: 2024-04-14T10:46:09.895Z (almost 2 years ago)
- Language: Rust
- Homepage:
- Size: 399 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Rust Lang 🦀
Compiling Rust :
```sh
rustc .rs
```
Cargo CLI :
```sh
cargo new # 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](./CommonProgrammingLanguage/)
- Variables
- Data Types
- Functions
- Ownership Concepts
- [Guessing Game](./guessing_game/)
- Libraries
- I/O
- [Structs Implementation](./structs_implementation/)
- Structs
- Methods
- [Enums](./enums/)
- Enums
- Type Definitions
- [Common Collections](./common_collections/)
- Vector
- Hash Map
- [Error Handling](./error_handling/)
- Panic mode
- Error Kind
- [Options](./options_rust/)
- Options