From f1f052bddeda22dd50bf126b5e0f958000518f86 Mon Sep 17 00:00:00 2001 From: Martin HART Date: Tue, 20 Oct 2020 14:06:10 +0200 Subject: [PATCH] add somme comments --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(()) }