use std::env; pub fn main() { let args: Vec = env::args().collect(); for arg in &args[1..] { fine::process_file(arg); } }