9 lines
193 B
Rust
9 lines
193 B
Rust
|
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()) {
|
||
|
|
||
|
}
|
||
|
}
|