diff options
author | Justin Wernick <j.wernick@eyeo.com> | 2023-11-30 13:15:17 +0200 |
---|---|---|
committer | Justin Wernick <j.wernick@eyeo.com> | 2023-11-30 13:15:17 +0200 |
commit | bbe9e0452016d9667dda36ca98b44842a64d93be (patch) | |
tree | b3646700eeb13b11b63d4111f6b86eb223663990 /2023/src/bin | |
parent | 3a419be8836ae6e51adc20ba484b6c091ce696ec (diff) |
2023 Setup. Let's go!
Diffstat (limited to '2023/src/bin')
-rw-r--r-- | 2023/src/bin/day_1.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2023/src/bin/day_1.rs b/2023/src/bin/day_1.rs new file mode 100644 index 0000000..227aada --- /dev/null +++ b/2023/src/bin/day_1.rs @@ -0,0 +1,8 @@ +use std::fs; + +fn main() -> Result<(), Box<dyn std::error::Error>> { + let input = fs::read_to_string("inputs/day_1.txt")?; + dbg!(input); + + Ok(()) +} |