blob: d1af26f90bb117a85ab40a9052c5d12a9b09e468 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
mod game_of_life;
/// Create and run a Game of Life simulations
fn main() {
let opts = game_of_life::opts::Opts::from(game_of_life::app().get_matches())
.unwrap_or_else(|e| e.exit());
println!("{:?}", opts);
}
|