9 lines
174 B
Rust
9 lines
174 B
Rust
use std::fs;
|
|
|
|
use aoc2022::day10::process_part_1;
|
|
|
|
fn main() {
|
|
let file = fs::read_to_string("./inputs/day10.txt").unwrap();
|
|
println!("{}", process_part_1(&file));
|
|
}
|