From 1ad10e00d1bbac350d1e3b8d5216b2f712a1483d Mon Sep 17 00:00:00 2001 From: karl Date: Wed, 21 Oct 2020 18:27:49 +0200 Subject: [PATCH] Add readme --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..428f897 --- /dev/null +++ b/README.md @@ -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. +```