summaryrefslogtreecommitdiffstats
path: root/CLI/rust/src/main.rs
blob: 71f81e5987fa3f0937d94e168c536735a325be37 (plain) (blame)
1
2
3
4
5
6
mod game_of_life;

fn main() {
    let matches = game_of_life::options().unwrap_or_else(|e| e.exit());
    println!("{:?}", matches);
}