Advent-of-Code/2023/daily-template/src/part1.rs
2023-12-08 17:33:56 +02:00

20 lines
337 B
Rust

use color_eyre::Result;
pub fn process(input: &str) -> Result<usize> {
todo!("day xx - part 1");
Ok(0)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_process() -> Result<()> {
let input = "";
todo!("haven't built test yet");
assert_eq!(0, process(input)?);
Ok(())
}
}