Files
contests/advent_of_code/default_main.rs

26 lines
341 B
Rust

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() {}
}