summaryrefslogtreecommitdiffstats
path: root/CLI/rust/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'CLI/rust/src/main.rs')
-rw-r--r--CLI/rust/src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/CLI/rust/src/main.rs b/CLI/rust/src/main.rs
index e7a11a9..71f81e5 100644
--- a/CLI/rust/src/main.rs
+++ b/CLI/rust/src/main.rs
@@ -1,3 +1,6 @@
+mod game_of_life;
+
fn main() {
- println!("Hello, world!");
+ let matches = game_of_life::options().unwrap_or_else(|e| e.exit());
+ println!("{:?}", matches);
}