Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ersinaksar/learning-rust
This repo contains the notes I took while learning the Rust programming language, the sample Rust programs I wrote, and the exercises. Don't hesitate to contribute and fork the repo.
https://github.com/ersinaksar/learning-rust
algorithm-challenges algorithms algorithms-and-data-structures examples-rust grokkingalgorithms learning-rust rust rust-lang rust-language rust-learning rust-note rust-notes rust-practice rust-programming-language rust-project rustlang
Last synced: about 2 months ago
JSON representation
This repo contains the notes I took while learning the Rust programming language, the sample Rust programs I wrote, and the exercises. Don't hesitate to contribute and fork the repo.
- Host: GitHub
- URL: https://github.com/ersinaksar/learning-rust
- Owner: ersinaksar
- License: mit
- Created: 2022-10-09T08:12:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-16T18:48:45.000Z (about 2 years ago)
- Last Synced: 2024-11-19T01:13:35.312Z (about 2 months ago)
- Topics: algorithm-challenges, algorithms, algorithms-and-data-structures, examples-rust, grokkingalgorithms, learning-rust, rust, rust-lang, rust-language, rust-learning, rust-note, rust-notes, rust-practice, rust-programming-language, rust-project, rustlang
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Learning-Rust
This repo contains the notes I took while learning the Rust programming language, the sample Rust programs I wrote, and the exercises. Don't hesitate to contribute and fork the repo.# First Steps
## installation
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
source "$HOME/.cargo/env"
rustup update
rustc --version### creating project with cargo
cargo new hello_cargo
cd hello_cargo### compile and run cargo project
cargo build
./target/debug/hello_cargo