adventofcode2022/src/cli/commands/day021.rs

9 lines
193 B
Rust
Raw Normal View History

2022-12-05 16:11:08 +01:00
use crate::cli::PathBuf;
use crate::util::read_lines;
pub fn subcmd_day021(file: &Option<PathBuf>, alt: &bool) {
if let Ok(lines) = read_lines(file.as_ref().unwrap().as_path()) {
}
}