Default advent of code rust main

This commit is contained in:
2024-12-02 14:24:02 +01:00
parent 32fa833654
commit 9c227df6e3

View File

@@ -0,0 +1,25 @@
fn solve_1(input: &str) {}
fn solve_2(input: &str) {}
fn main() {
println!("Hello, this is Patrick!");
let input = include_str!("../input.txt");
let result_1 = solve_1(input);
let result_2 = solve_2(input);
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_1() {}
#[test]
fn test_2() {}
}