diff options
author | Rory Dudley | 2024-03-24 22:38:32 -0600 |
---|---|---|
committer | Rory Dudley | 2024-03-24 22:38:32 -0600 |
commit | 9f45a99b089da2cbbe5c5a866bcf146443742641 (patch) | |
tree | 92cded98ae39309ea23ae4216c5c6811fb819da4 | |
parent | f07884c9f4bc0eececb150d3ee1a78d42cb20cbe (diff) | |
download | dwarvish-9f45a99b089da2cbbe5c5a866bcf146443742641.tar.gz |
Remove debug line
Remove println!() in main that was used for debugging the parser output.
-rw-r--r-- | src/main.rs | 2 |
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(_) => {} |