The Game of Life is a cellular automation created by John Conway. It simulates the evolution of a grid of cells based on four rules:
- Any live cell with less than two neighbors dies (as if by solitude).
- Any live cell with two or three neighbors moves on.
- Any live cell with more than three neighbors dies (as if by overpopulation).
- Any dead cell with three neighbors becomes a live cell (as if by reproduction).
GitHub Pages Deployment on the right. I recommend fullscreen.
This program was written in C using the RayLib library. Compiled to web using Emscripten.