Boilerplate for day 01

This commit is contained in:
2022-11-18 08:46:15 +01:00
parent 778231859b
commit 907e17ae44
5 changed files with 416 additions and 9 deletions

5
src/day01/mod.rs Normal file
View File

@ -0,0 +1,5 @@
use crate::read;
pub fn run() {
let input = read("01");
}