A touch more of a start to day 12

This commit is contained in:
Timothy Warren 2022-12-15 16:53:02 -05:00
parent 9f68b6fbe3
commit 6c8a850864
1 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
fn main() {
println!("Hello, world!");
let file_str = include_str!("input.txt");
}
#[cfg(test)]
mod tests {
use super::*;
fn get_test_data() -> &'static str {
include_str!("test-input.txt")
}
}