1//! A crate to help implementing Conway's Game of life applications. 2 3pub mod cell; 4pub mod generation; 5pub mod result; 6pub mod ruleset;