aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 105450f2d44e1d39b13e09f84ffd7431ce8380c7 (plain) (blame)
1
2
3
4
5
6
7
8
mod readline;
mod repl;

fn main() {
    let _screen = crossterm::RawScreen::into_raw_mode().unwrap();

    repl::repl();
}