sguimmara / gol

The Game of Life in rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Game Of Life

A very simple implementation of the famous Game Of Life in Rust !

Getting started

Preparation

Clone this repository:

git clone git@github.com:sguimmara/gol.git

Using Cargo

Note: this application uses the ncurses crate that depends on the ncurses library.

Install ncurses. For example with apt-get package manager:

sudo apt-get update 
sudo apt-get install libncurses5-dev libncursesw5-dev

Build with Cargo:

cargo build --release

Run the game:

cargo run

Using Docker

Build the image

docker build -t GameOfLife .

Run the game:

docker run -it GameOfLife

About

The Game of Life in rust

License:MIT License


Languages

Language:Rust 97.1%Language:Dockerfile 2.9%