Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 716 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 716 Bytes

Running the Game of Life in Rust

This is a simple guide on how to run the Game of Life in Rust.
The Game of Life is a cellular automaton proposed by John Horton Conway.
It's a simple yet fascinating simulation where cells can be alive or dead, and their state changes based on certain rules.

Installation

To run the Game of Life in Rust, you need to have Rust installed on your system.
If you haven't installed Rust yet, you can do so by visiting the official Rust installation page.

Running the Game

Once you have Rust installed, you can go to where the project is stored and run:

cargo run

Tip

To close the Game, just hit ALT+F4