Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 541 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 541 Bytes

Conway

A Python implementation of Conway's game of life focusing on TDD and OOP. Influenced by portions of Corey Haine's "Understanding the Four Rules of Simple Design".

Getting Started

1 - Build docker image:

docker build -t conway .

2 - Run bash on container instance:

docker run -v "$PWD":/conway -it conway bash

3 - Run unit tests:

python -m unittest

4 - Play a demo "Game of Life":

python play.py

Example of play.py output: