rename repl to interpret

This commit is contained in:
2024-10-14 17:58:22 -04:00
parent 1e053f840e
commit 4b2fefd798
2 changed files with 25 additions and 10 deletions

View File

@@ -1,10 +0,0 @@
use std::io::{self, BufReader};
fn main() {
for value in lamm::evaluate(BufReader::new(io::stdin())) {
match value {
Ok(v) => println!("{v}"),
Err(e) => eprintln!("{e}"),
}
}
}