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

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