Skip to content
Snippets Groups Projects
Commit a538255d authored by clemo's avatar clemo
Browse files

add Diagram

parent 3115b9e8
No related branches found
No related tags found
No related merge requests found
Pipeline #4602 passed
...@@ -2,6 +2,19 @@ ...@@ -2,6 +2,19 @@
simple c implementation of [Conway's game of life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). simple c implementation of [Conway's game of life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life).
## overview
```plantuml
(*) -> "gol_setup"
-> "print_row"
-> "print_colmn"
-> "gol_tick"
-> "print_row"
"print_colmn"->"print_row"
"gol_tick"->(*)
```
## usage ## usage
- download /clone the src folder. - download /clone the src folder.
...@@ -53,4 +66,4 @@ int main(int argc, char **argv) ...@@ -53,4 +66,4 @@ int main(int argc, char **argv)
```bash ```bash
make test make test
echo $? #should be 0 echo $? #should be 0
``` ```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment