From bd89bfa744af57e089c4ae76a99ec2e16f8b3536 Mon Sep 17 00:00:00 2001 From: mhart Date: Sat, 17 Oct 2020 21:05:06 +0200 Subject: [PATCH] Add Vec to store all the robots --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index f13144f..9600ecd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,6 +58,7 @@ fn open_file(filename: &str) -> io::Result { } fn main() { + let mut robot_pool: Vec = Vec::new(); let conf = open_file("two_robots.txt"); }