Skip to content

clundin55/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Conway's Game of Life

A derivation of Conway's game of life. Tries to conform as much to the rules as possible, but prints out multiple species of animals.

Rules:

  • Track 8 neighbor animals
  • If there are less than two neighbors or more than three neighbors the animal will die.
  • If there are three neighbors the animal will return to life.
  • Neighbor animal types don't matter.

I made this for fun to learn a bit more about the Rust programming language.

Getting Started

See game instructions by running cargo run -- --help.

Enjoy!

About

Game of Life implemented in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages