https://github.com/przbadu/rust-by-example
Learning Rust by examples, reference: https://doc.rust-lang.org/rust-by-example/index.html
https://github.com/przbadu/rust-by-example
Last synced: about 1 month ago
JSON representation
Learning Rust by examples, reference: https://doc.rust-lang.org/rust-by-example/index.html
- Host: GitHub
- URL: https://github.com/przbadu/rust-by-example
- Owner: przbadu
- Created: 2023-05-16T03:26:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-03T06:05:33.000Z (almost 2 years ago)
- Last Synced: 2025-02-14T22:47:39.151Z (3 months ago)
- Language: Rust
- Size: 10.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Rust by Example
Reference: https://doc.rust-lang.org/rust-by-example/index.html
## How to run
- Install [Rust](https://www.rust-lang.org/tools/install)
- Each small examples are created using cargo, Rust will ship with cargocd into each example apps and run
```sh
cargo run
```to run the app.
Editors like VSCode will also allow you to run each examples directly from the editor itself.