mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
20 lines
395 B
Rust
20 lines
395 B
Rust
|
use std::env;
|
||
|
use std::process;
|
||
|
|
||
|
use minigrep::Config;
|
||
|
|
||
|
fn main() {
|
||
|
let args: Vec<String> = env::args().collect();
|
||
|
|
||
|
let config = Config::new(&args).unwrap_or_else(|err| {
|
||
|
println!("Problem parsing arguments: {}", err);
|
||
|
process::exit(1);
|
||
|
});
|
||
|
|
||
|
if let Err(e) = minigrep::run(config) {
|
||
|
println!("Application error: {}", e);
|
||
|
|
||
|
process::exit(1);
|
||
|
}
|
||
|
}
|