We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d46c6d commit 30dd860Copy full SHA for 30dd860
src/year2019/day17.rs
@@ -100,7 +100,7 @@ pub fn part2(input: &Input) -> i64 {
100
let path = build_path(input);
101
let mut movement = Movement { routine: String::new(), functions: [None; 3] };
102
103
- compress(&path, &mut movement);
+ let _unused = compress(&path, &mut movement);
104
105
// Convert trailing comma ',' into a trailing newline '\n'
106
let mut rules = String::new();
0 commit comments