use std::{env, process}; use learn::{Config, run}; fn main() { let config = Config::new(env::args()).unwrap_or_else(|err| { eprintln!("Problem parsing arguments: {}", err); // 程序退出运行 process::exit(1); }); if let Err(e) = run(config) { eprintln!("Application error: {}", e); // 程序退出运行 process::exit(1); } }