Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 840 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 840 Bytes

Conway's Game of Life

Elixir CI

A Game of Life implementation to learn Elixir.

Usage

Requirements

Install the dependencies:

mix deps.get

Running Tests

Execute the following command to run the tests:

mix test

Running the CLI

To run the CLI, execute the following script:

./run-cli.sh

The CLI accepts the following optional arguments:

  • --generations or -g: The number of generations (iterations). Default: 5.
  • --grid-size or -s: The size of the grid. Default: 10.

TODO

  • Web interface with phoenix LiveView.