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

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