Skip to content

ilcors-dev/gameoflife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gameoflife

I had never heard of the Game Of Life until recently, so I got curious and decided to implement it.

(using rust, btw)

What is gameoflife?

The game of life is a game that simulates the evolution of a population of cells. The game is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves.

Further information can be found on the Wikipedia page.

Table of Contents

🏁 Getting Started

⚙️ Configuration

You just need rust installed on your machine.

⬇️ Installation

git clone https://github.com/ilcors-dev/gameoflife

🎈 Usage

The following command will run the game with a 32x32 grid, where the time between each generation is 3 seconds, and the initial state is random:

cargo run -- --width 32 --height 32 --time-between-updates 3 --random

For further information about the arguments, run:

cargo run -- --help

futher instructions...

📄 License

Published under MIT

✍️ Authors


auto-generated by writeme