Skip to content

simple implementation of conway's game of life in rust programming language

Notifications You must be signed in to change notification settings

zekzekus/gol-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gol-rust

my simple and silly implementation of Game of Life.

Purpose is just playing with rust.

Requirements

  • libtcod -> on mac os x its just brew install libtcod

Build

  • cargo build --release

Run

  • usage: bedelli width height rule seeder
  • rule -> like b2s23. this is standard Conway's rule.
  • seeder -> 0: random, 1: a glider, 2: One alive at the center, 3: five alive cells in the middle.
  • ./target/release/bedelli 100 100 b2s23 0

TODO

  • use clap for cli interface.
  • add interaction. e.g. start with an empty board, add alive cells with mouse then start processing, pause, restart etc.

About

simple implementation of conway's game of life in rust programming language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages