minigrep0101 0.1.0

A fun game where you guess what number the computer has chosen.
Documentation
use std::process;
use std::env;

use minigrep0101::Config;
use minigrep0101::run;
fn main() {
    let config = Config::new(env::args()).unwrap_or_else(|err| {
        eprintln!("Problem parsing arguments: {}", err);
        process::exit(1);
    });
    println!("Searching for {}", config.query);
    println!("In file {}", config.filename);
    if let Err(e) = run(&config) {
        eprintln!("Application error: {}", e);
        process::exit(1);
    }
}