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

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

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 cargo

cd 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.