Revert "rename repl to interpret"

This reverts commit 4b2fefd798.
This commit is contained in:
2024-10-14 19:38:07 -04:00
parent cf13c4ef53
commit ffc3be91ee
2 changed files with 10 additions and 25 deletions

10
examples/repl.rs Normal file
View File

@@ -0,0 +1,10 @@
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}"),
}
}
}