abbywong / game_of_life

Learning to program in KotlinJS by making the classic Game of Life

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Game of Life

Learning to program in KotlinJS by making the classic Game of Life

Languages:

Server: Kotlin (KotlinJS) Client: (generated by Kotlin), CSS, HTML

Game rules

From https://bitstorm.org/gameoflife/

  • For a space that is 'populated': * Each cell with one or no neighbors dies, as if by solitude. * Each cell with four or more neighbors dies, as if by overpopulation. *Each cell with two or three neighbors survives.
  • For a space that is 'empty' or 'unpopulated' * Each cell with three neighbors becomes populated.

About

Learning to program in KotlinJS by making the classic Game of Life

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Kotlin 87.7%Language:HTML 12.3%