diff options
author | Guillermo Ramos | 2024-12-06 15:59:32 +0100 |
---|---|---|
committer | Guillermo Ramos | 2024-12-06 16:29:18 +0100 |
commit | ff064b6f13019b15346ff320a486d70b95d80b2a (patch) | |
tree | 396868cbbd9be95f6ce0a808f8436d4a1a0f1d89 /2024_rust/src/bin/dayN.rs | |
parent | a6029017bb354381c17afaf00526442966648c3f (diff) | |
download | AoC-ff064b6f13019b15346ff320a486d70b95d80b2a.tar.gz |
Each day is now a binary
Diffstat (limited to '2024_rust/src/bin/dayN.rs')
-rw-r--r-- | 2024_rust/src/bin/dayN.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2024_rust/src/bin/dayN.rs b/2024_rust/src/bin/dayN.rs new file mode 100644 index 0000000..cdaa061 --- /dev/null +++ b/2024_rust/src/bin/dayN.rs @@ -0,0 +1,15 @@ +fn p1(_input: &str) -> String { + let result = "TODO"; + + result.to_string() +} + +fn p2(_input: &str) -> String { + let result = "TODO"; + + result.to_string() +} + +fn main() { + aoc2024::run_day("N", p1, p2); +} |