summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRory Dudley2024-03-24 22:38:32 -0600
committerRory Dudley2024-03-24 22:38:32 -0600
commit9f45a99b089da2cbbe5c5a866bcf146443742641 (patch)
tree92cded98ae39309ea23ae4216c5c6811fb819da4
parentf07884c9f4bc0eececb150d3ee1a78d42cb20cbe (diff)
downloaddwarvish-9f45a99b089da2cbbe5c5a866bcf146443742641.tar.gz
Remove debug line
Remove println!() in main that was used for debugging the parser output.
-rw-r--r--src/main.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 75c2d46..396a69f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -68,8 +68,6 @@ fn repl(path: &Vec<&Path>, prompt: &str, at_prompt: &mut Arc<Mutex<bool>>) {
}
};
- // println!("{:?}", poem);
-
// Recite the poem
match poem.recite(path, &mut bins, None) {
Ok(_) => {}