From 5f00b4794ba2687f4e3390553f7f5a4810ff83ca Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Sun, 4 Dec 2022 18:30:21 +0100 Subject: [PATCH] comment out day1 and day2 modules in lib.rs I forgot to add the comments after testing scaffolding --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4d3e650..49f7a1b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,8 +7,8 @@ use std::env; use std::fs; // modules for the different days are automatically uncomented by the scaffold command -pub mod day01; -pub mod day02; +// pub mod day01; +// pub mod day02; // pub mod day03; // pub mod day04; // pub mod day05;