2021-12-01 00:32:33 -04:00

5 lines
144 B
Rust

fn main() {
let input = std::fs::read_to_string("./input/2020/day20.txt").expect("open input file");
advent_of_code_2021::run(input);
}