You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
657 B

// ANCHOR: here
use std::env;
use std::process;
use minigrep::Config;
fn main() {
// --snip--
// ANCHOR_END: here
let args: Vec<String> = env::args().collect();
let config = Config::new(&args).unwrap_or_else(|err| {
println!("Problem parsing arguments: {}", err);
process::exit(1);
});
println!("Searching for {}", config.query);
println!("In file {}", config.filename);
// ANCHOR: here
if let Err(e) = minigrep::run(config) {
// --snip--
// ANCHOR_END: here
println!("Application error: {}", e);
process::exit(1);
// ANCHOR: here
}
}
// ANCHOR_END: here