advent-of-code/2023/day3/src/main.rs

10 lines
149 B
Rust

const FILE_STR: &'static str = include_str!("input.txt");
fn main() {
println!("Hello, world!");
}
#[cfg(test)]
mod tests {
use super::*;
}