about summary refs log tree commit diff
path: root/users/glittershark/achilles/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/achilles/src/main.rs')
-rw-r--r--users/glittershark/achilles/src/main.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/users/glittershark/achilles/src/main.rs b/users/glittershark/achilles/src/main.rs
new file mode 100644
index 0000000000..4ba0aaf33e
--- /dev/null
+++ b/users/glittershark/achilles/src/main.rs
@@ -0,0 +1,38 @@
+#![feature(str_split_once)]
+#![feature(or_insert_with_key)]
+
+use clap::Clap;
+
+pub mod ast;
+pub mod codegen;
+pub(crate) mod commands;
+pub(crate) mod common;
+pub mod compiler;
+pub mod interpreter;
+#[macro_use]
+pub mod parser;
+pub mod tc;
+
+pub use common::{Error, Result};
+
+#[derive(Clap)]
+struct Opts {
+    #[clap(subcommand)]
+    subcommand: Command,
+}
+
+#[derive(Clap)]
+enum Command {
+    Eval(commands::Eval),
+    Compile(commands::Compile),
+    Check(commands::Check),
+}
+
+fn main() -> anyhow::Result<()> {
+    let opts = Opts::parse();
+    match opts.subcommand {
+        Command::Eval(eval) => Ok(eval.run()?),
+        Command::Compile(compile) => Ok(compile.run()?),
+        Command::Check(check) => Ok(check.run()?),
+    }
+}