From 005ad6215aa9e2a8f159454c8006b5dc6aeb3635 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 30 Apr 2020 08:59:47 +0200 Subject: Update `README` of `game_of_life` example --- examples/game_of_life/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/examples/game_of_life/README.md b/examples/game_of_life/README.md index ebbb12cc..bb1b9736 100644 --- a/examples/game_of_life/README.md +++ b/examples/game_of_life/README.md @@ -1,18 +1,19 @@ -## Bézier tool +## Game of Life -A Paint-like tool for drawing Bézier curves using the `Canvas` widget. +An interactive version of the Game of Life, invented by John Conway, implemented +on top of a `Canvas` widget and other controls. -The __[`main`]__ file contains all the code of the example. +The __[`main`]__ file contains the relevant code of the example.
- - + +
You can run it with `cargo run`: ``` -cargo run --package bezier_tool +cargo run --package game_of_life ``` [`main`]: src/main.rs -- cgit