diff --git a/advent_of_code/default_main.rs b/advent_of_code/default_main.rs new file mode 100644 index 0000000..244d49c --- /dev/null +++ b/advent_of_code/default_main.rs @@ -0,0 +1,25 @@ +fn solve_1(input: &str) {} + +fn solve_2(input: &str) {} + +fn main() { + println!("Hello, this is Patrick!"); + + let input = include_str!("../input.txt"); + + let result_1 = solve_1(input); + + let result_2 = solve_2(input); +} + +#[cfg(test)] + +mod tests { + use super::*; + + #[test] + fn test_1() {} + + #[test] + fn test_2() {} +}