diff --git a/src/main.rs b/src/main.rs index df4cbd6..6cde3d7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -141,8 +141,11 @@ fn main() -> Result<(), Box> { ) .get_matches(); - let mut robot_pool: Vec = Vec::new(); let raw_conf = open_file(matches.value_of("file").unwrap_or("two_robots.txt"))?; + + // We store all the robots inside a pool O_o + let mut robot_pool: Vec = Vec::new(); + Ok(()) }