Watch
1
0
Fork
You've already forked advent-of-code
0
This commit is contained in:
Jeremy Kaplan 2018-12-02 11:53:57 -08:00
commit a8eac265a4
2 changed files with 112 additions and 0 deletions

View file

@ -1,6 +1,9 @@
mod day1;
mod day2;
fn main() {
println!("{}", day1::part1());
println!("{}", day1::part2());
println!("{}", day2::part1());
println!("{}", day2::part2());
}