Skip to content

An implementation of the Conway's Game of Life using Ruby

Notifications You must be signed in to change notification settings

swaff/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

game-of-life

An implementation of the Conway's Game of Life using Ruby

Rules

  • Any live cell with fewer than two live neighbours dies, as if caused by under-population.
  • Any live cell with two or three live neighbours lives on to the next generation.
  • Any live cell with more than three live neighbours dies, as if by overcrowding.
  • Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

About

An implementation of the Conway's Game of Life using Ruby

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages