Skip to content

qjuanp/gameoflife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game of life

Rules

  • Underpopulation: An alive cell with 0-1 live neighbors will die
  • Right conditions: An alive cell with 2-3 live neighbors will be kept alive
  • Overpopulation: An alive cell with more than 3 live neighbots will die
  • Regeneration: A dead cell with exactly 3 live neighbors will live

App

Run

Run the game of life directly with go

go run .

Tests

Execute all the test cases

go test

References

Programming Projects for Advanced Beginners #2: Game of Life

About

Game of life written in go

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages