about summary refs log tree commit diff
path: root/tvix/eval/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/main.rs')
-rw-r--r--tvix/eval/src/main.rs54
1 files changed, 0 insertions, 54 deletions
diff --git a/tvix/eval/src/main.rs b/tvix/eval/src/main.rs
deleted file mode 100644
index 4cfa0a137a..0000000000
--- a/tvix/eval/src/main.rs
+++ /dev/null
@@ -1,54 +0,0 @@
-use std::{
-    env, fs,
-    io::{self, Write},
-    mem, process,
-};
-
-mod chunk;
-mod compiler;
-mod errors;
-mod eval;
-mod opcode;
-mod value;
-mod vm;
-
-fn main() {
-    let mut args = env::args();
-    if args.len() > 2 {
-        println!("Usage: tvix-eval [script]");
-        process::exit(1);
-    }
-
-    if let Some(file) = args.nth(1) {
-        run_file(&file);
-    } else {
-        run_prompt();
-    }
-}
-
-fn run_file(file: &str) {
-    let contents = fs::read_to_string(file).expect("failed to read the input file");
-
-    run(contents);
-}
-
-fn run_prompt() {
-    let mut line = String::new();
-
-    loop {
-        print!("> ");
-        io::stdout().flush().unwrap();
-        io::stdin()
-            .read_line(&mut line)
-            .expect("failed to read user input");
-        run(mem::take(&mut line));
-        line.clear();
-    }
-}
-
-fn run(code: String) {
-    match eval::interpret(code) {
-        Ok(result) => println!("=> {}", result),
-        Err(err) => eprintln!("{}", err),
-    }
-}