pub fn part1() -> usize { return 0; } #[cfg(test)] mod day01 { use super::*; #[test] fn test_part1() { assert_eq!(part1(), 0); } }