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.
advent-of-code/rust/src/main.rs

11 lines
212 B

extern crate advent_of_code;
use advent_of_code::*;
fn main() {
let day = Day01::new("".to_string());
match day.solve() {
Ok(n) => println!("{}", n),
Err(e) => println!("{}", e),
}
}