simple conway thing
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index ae6773e..21bf7c6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -3,8 +3,8 @@ use std::{
time::Duration,
};
-const WIDTH: usize = 50;
-const HEIGHT: usize = 20;
+const WIDTH: usize = 64;
+const HEIGHT: usize = 36;
pub struct Grid([[bool; HEIGHT + 2]; WIDTH + 2]);
impl Default for Grid {