https://github.com/ahmedalyelghannam/rust_playground
This Repository will contain all the code I write in Rust throughout my learning journey.
https://github.com/ahmedalyelghannam/rust_playground
Last synced: 3 months ago
JSON representation
This Repository will contain all the code I write in Rust throughout my learning journey.
- Host: GitHub
- URL: https://github.com/ahmedalyelghannam/rust_playground
- Owner: AhmedAlyElGhannam
- Created: 2024-01-26T09:32:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-28T19:48:13.000Z (over 1 year ago)
- Last Synced: 2024-02-17T22:29:25.845Z (over 1 year ago)
- Homepage:
- Size: 116 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust_Playground
This Repository will contain all the code I write in Rust throughout my learning journey.## Installing Rust (Linux)
1. Run the following command in the terminal and proceed through the TUI menu.
```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
2. Enter the following line to source your newly-installed Rust toolchain. This command has to be run only once after installing Rust the first time.
```
source "$HOME/.cargo/env"
```
3. Now, to check if everything went okay, enter `rustup` in the terminal and you should see a screen like this:
## Installing Rustlings
For more info about Rustlings, please checkout their [Github repository](https://github.com/rust-lang/rustlings).Day 1 Progress: Finished 15 exercises + quiz1 of rustlings.