You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
334 B

mod day1;
mod day2;
fn main() {
println!(
"The answer to day 1 task 1 is: {}",
day1::step1().to_string()
);
println!("The answer to day 1 task 2 is: {}", day1::step2());
println!("The answer to day 2 task 1 is: {}", day2::step1());
println!("The answer to day 2 task 2 is: {}", day2::step2());
}