tmrustplayground 1.0.0

rust를 이용한 알고리즘 학습을 위한 프로젝트입니다. 다양한 문제에 대한 해결 로직을 구현해 둘 예정입니다.
Documentation
extern crate tmrustplayground;

use std::{env, process};
use std::collections::HashMap;
use std::path::Iter;
use tmrustplayground::{cache, minigrep};
use tmrustplayground::minigrep::Config;

fn run_clt() {
    let config = Config::new(env::args()).unwrap_or_else(|error| {
        eprintln!("Error description: {}", error);
        process::exit(1);
    });

    if let Err(error) = minigrep::run(config) {
        eprintln!("Error description: {}", error);
        process::exit(1);
    }
}

fn main() {
    let string = String::new();
}