Merge branch 'main' into csv

This commit is contained in:
2025-07-06 01:04:10 +01:00
committed by GitHub
9 changed files with 459 additions and 246 deletions

View File

@@ -1,4 +1,6 @@
# <img align="center" alt="Rustframe" src=".github/rustframe_logo.png" height="50" /> rustframe
# rustframe
<!-- # <img align="center" alt="Rustframe" src=".github/rustframe_logo.png" height="50px" /> rustframe -->
<!-- though the centre tag doesn't work as it would noramlly, it achieves the desired effect -->
@@ -109,3 +111,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
```