adventofcode2022/src/cli/commands/day025.rs

10 lines
243 B
Rust

use std::path::PathBuf;
use std::fs::File;
use std::io::{BufReader,Lines};
use crate::util::read_lines;
pub fn subcmd_day025(file: &Option<PathBuf>, alt: &bool) {
if let Ok(lines) = read_lines(file.as_ref().unwrap().as_path()) {
}
}