minigrep0444 0.1.0

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

use minigrep0444;
use minigrep0444::Config;


fn main() {
    let args: Vec<String> = env::args().collect();

    let config = Config::new(&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) = minigrep0444::run(config) {
        eprintln!("Application error: {}", e);

        process::exit(1);
    }
}