cl-repl: restructure for future improvements. Replaces temporary handrolled argument parser with external dependency argh.

TODO: Rewrite `argh` in Conlang :^P
This commit is contained in:
2024-03-01 02:35:58 -06:00
parent c71f68eb55
commit d7604ba039
4 changed files with 186 additions and 247 deletions

View File

@@ -0,0 +1,6 @@
use cl_repl::cli::run;
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
run(argh::from_env())
}