advent-of-code/aoc2015/src/main.rs

11 lines
172 B
Rust
Raw Normal View History

2019-12-01 22:22:12 +01:00
use aoc::Result;
2019-12-01 21:16:15 +01:00
2019-12-01 22:22:12 +01:00
use aoc2015::day01;
2019-12-02 16:59:09 +01:00
use aoc2015::day02;
2019-12-01 21:16:15 +01:00
fn main() -> Result<()> {
2019-12-02 16:59:09 +01:00
let days: &[fn() -> Result<()>] = &[day01::run, day02::run];
2019-12-01 21:16:15 +01:00
2019-12-02 16:05:24 +01:00
aoc::run(days)
2019-12-01 21:16:15 +01:00
}