https://github.com/slaveofcode/rustlearn
Stages of learning in Rust Programming Language
https://github.com/slaveofcode/rustlearn
exercise rust rust-basic rust-lang
Last synced: 4 months ago
JSON representation
Stages of learning in Rust Programming Language
- Host: GitHub
- URL: https://github.com/slaveofcode/rustlearn
- Owner: slaveofcode
- License: mit
- Created: 2019-07-29T14:57:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T17:09:57.000Z (over 6 years ago)
- Last Synced: 2025-03-30T08:33:03.900Z (10 months ago)
- Topics: exercise, rust, rust-basic, rust-lang
- Language: Rust
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RustLearn
This repository is created as a path of my learning in rust programming language. The exercises were divided into separated stages. You can go over each other starting from `stage-1` to start experiencing a simple programming in rust.
## Compiling
Go to chosen stage, and run the compilation on rust file `*.rs` by using `rustc` and see the result by executing the binary. (it would be an `.exe` file on windows)
$> cd stage-5
$> rustc function.rs
$> ./function