From 6c8a850864f16c573c583ae5eb8a7f4d832f05d9 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Thu, 15 Dec 2022 16:53:02 -0500 Subject: [PATCH] A touch more of a start to day 12 --- day12/src/main.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/day12/src/main.rs b/day12/src/main.rs index e7a11a9..97a91c0 100644 --- a/day12/src/main.rs +++ b/day12/src/main.rs @@ -1,3 +1,12 @@ fn main() { - println!("Hello, world!"); + let file_str = include_str!("input.txt"); +} + +#[cfg(test)] +mod tests { + use super::*; + + fn get_test_data() -> &'static str { + include_str!("test-input.txt") + } }