lox_one 0.1.0

A tree-walking interpreter for the Lox programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
mod cli;

use clap::Parser;
use cli::{execute_args, CliArgs};

fn main() {
    let args: CliArgs = CliArgs::parse();

    execute_args(&args)
}