conway_rs/
lib.rs

1//! # A simple implementation of Conway's Game of Life
2//!
3//! The main modules are the cell and grid. Utils module has just a function
4//! whose returns a random number to initialize the grid.
5extern crate rand;
6pub mod grid;
7pub mod cell;
8pub mod utils;