aboutsummaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-04-29 14:18:12 +0100
committertslil <tslil@posteo.de>2026-04-29 16:21:20 +0100
commit87266db229c7f14527c85b06abcf074cf861f6f9 (patch)
treeff708df2ef9c5529d469c948aa9744a56d96c308 /src/parser.rs
parentcafb3a62af10bb09f8489ba0ab07258a70a75664 (diff)
implement canonicalisation in case arms, work through first bit of app
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 418a17e..1aed3f8 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -225,7 +225,7 @@ parser! {
pub fn debug_parse(src: &str) -> Programme {
match parser::program(src) {
Ok(p) => {
- println!("```{}\n```\n=>\n{}\n", src, p);
+ println!("{}", p);
p
}
Err(e) => {