An open API service indexing awesome lists of open source software.

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

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