advent-of-code/2022/aoc2022/src/day10.rs

7 lines
141 B
Rust
Raw Normal View History

2022-12-14 17:06:27 -08:00
const INPUT: &'static str = include_str!("../../Data/day10-input.txt");
pub fn main(_filename: &str) -> std::io::Result<()> {
Ok(())
}