Conway's Game of Life implemented as a Micro-Rollup using @stackr/sdk.
The initial pattern constitutes the seed of the system. The first generation is created by applying the above rules simultaneously to every cell in the seed, live or dead; births and deaths occur simultaneously, and the discrete moment at which this happens is sometimes called a tick.[nb 1] Each generation is a pure function of the preceding one. The rules continue to be applied repeatedly to create further generations.
- Taken from the wikipedia page.
Need I say more?
cp .env.example .env
- Add
PRIVATE_KEY
in.env
. - You can configure some constants such as grid size in
src/constants.ts
.
$ bun run src/cli.ts