add somme comments

This commit is contained in:
Martin HART 2020-10-20 14:06:10 +02:00
parent bd9681ad86
commit f1f052bdde
1 changed files with 4 additions and 1 deletions

View File

@ -141,8 +141,11 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
)
.get_matches();
let mut robot_pool: Vec<Robot> = 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<Robot> = Vec::new();
Ok(())
}