From 77785e0d6d326e1d75f20789d15fbbd9e1b4a61f Mon Sep 17 00:00:00 2001 From: Martin HART Date: Wed, 28 Oct 2020 12:00:17 +0100 Subject: [PATCH] add vec of robot --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index ba78715..71a1e16 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,6 +41,8 @@ fn main() -> Result<(), Box> { let raw_conf = open_file(matches.value_of("file").unwrap_or("two_robots.txt"))?; + let robot_pool: Vec = Vec::new(); + Ok(()) }