2021: setup boilerplate
This commit is contained in:
parent
ebc57d58b6
commit
d5c85d4a17
9 changed files with 98 additions and 1 deletions
11
aoc2021/src/main.rs
Normal file
11
aoc2021/src/main.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
use anyhow::Result;
|
||||
|
||||
use aoc::DayFunc;
|
||||
|
||||
use aoc2021::day00;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
let days: &[DayFunc] = &[day00::run];
|
||||
|
||||
aoc::run(days)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue