Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 601 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 601 Bytes

Conway's Game of Life

Conway's Game of Life.

You can see a demo of the program here.

Goals

  • Enjoy the beauty of "Life".
  • Learn more about C++.
  • Code more.

Rules

From Wikipedia:

  • Any live cell with two or three live neighbours survives.
  • Any dead cell with three live neighbours becomes a live cell.
  • All other live cells die in the next generation. Similarly, all other dead cells stay dead.

License

This project is licensed under the MIT License. See LICENSE.