/gameOfLife

Conway's game of life in command line

Primary LanguageGo

CONWAY'S GAME OF LIFE

This is a command line interface for the famous Game Of Life. You can use Arrow keys or VIM motions to move the pointer. Press "p" to turn on a cell. After you are done with the initial configuration, press "s" to start the simulation. Have fun!

Installation

You can directly run the built binary if you are on Linux or potentially Mac. Else, you must build the project yourself by following these instructions:

go mod tidy

and then

go run .

or if you want to build, you must:

go build .