Add instructions for running examples in README.md

This commit is contained in:
Palash Tyagi 2025-07-05 00:47:57 +01:00
parent 48660b1a75
commit 1f306c59f2

View File

@ -102,3 +102,15 @@ assert!(check);
### More examples
See the [examples](./examples/) directory for some demonstrations of Rustframe's syntax and functionality.
To run the examples, use:
```bash
cargo run --example <example_name>
```
E.g. to run the `game_of_life` example:
```bash
cargo run --example game_of_life
```