mirror of
https://codeberg.org/emilwilliams/life
synced 2024-11-22 03:54:20 -05:00
11 lines
318 B
Markdown
11 lines
318 B
Markdown
# Conway's Game Of Life
|
|
|
|
An implementation in C.
|
|
|
|
Usage: ./life [GRID SIZE=20] [WAIT BETWEEN EACH STEP=4] [MAX STEP=-1]
|
|
|
|
WAIT is written as 1e6 / WAIT, which we wait as a fraction of a second.
|
|
|
|
I will one day write a good frontend for the CLI, along with proper
|
|
logging, and readin and readout of RLE, and maybe more.
|