use std::fs; fn main() -> Result<(), Box> { let input = fs::read_to_string("inputs/day_1.txt")?; dbg!(input); Ok(()) }