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

fn main() {
    repl::repl();
}