@christianjuth/game-of-life
v0.0.1-alpha.4
Published
Conway Game of Life simulation
Downloads
12
Readme
@christianjuth/game-of-life
Conway Game of Life simulation
Usage
import { gameOfLife } from '@christianjuth/game-of-life'
const game = gameOfLife(20)
game.print()
setInterval(() => {
game.tick()
game.print()
}, 800)