Add readme

This commit is contained in:
karl 2020-10-21 18:27:49 +02:00
parent 56d89d800a
commit 1ad10e00d1

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# Game of Life
Conway's Game of Life implemented efficiently in C++.
The input file must contain the number of columns and rows to expect. Live cells are marked as `x`, dead cells are `.`. For example:
```
3,2
...
.x.
```