This repository has been archived on 2023-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
advent-of-code-2022/day8/src/main.rs

8 lines
105 B
Rust
Raw Normal View History

2022-12-08 08:38:47 -05:00
fn main() {
let file_str = include_str!("input.txt");
}
#[cfg(test)]
mod tests {
use super::*;
}