diff options
| author | tslil <tslil@posteo.de> | 2026-04-29 14:18:12 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-04-29 16:21:20 +0100 |
| commit | 87266db229c7f14527c85b06abcf074cf861f6f9 (patch) | |
| tree | ff708df2ef9c5529d469c948aa9744a56d96c308 /src/parser.rs | |
| parent | cafb3a62af10bb09f8489ba0ab07258a70a75664 (diff) | |
implement canonicalisation in case arms, work through first bit of app
Diffstat (limited to 'src/parser.rs')
| -rw-r--r-- | src/parser.rs | 2 |
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) => { |
