diff options
author | Tom Smeding <t.j.smeding@uu.nl> | 2025-03-07 17:24:24 +0100 |
---|---|---|
committer | Tom Smeding <t.j.smeding@uu.nl> | 2025-03-07 17:24:24 +0100 |
commit | 3a738bd9c519fe890c03948eba1e1033b93a811a (patch) | |
tree | c30feba44792a8ec222d253162364f9e20aa0061 | |
parent | fe2a29ee350c0078c845f4457d85941d41583142 (diff) |
pretty: Print x value for (!)
-rw-r--r-- | src/AST/Pretty.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AST/Pretty.hs b/src/AST/Pretty.hs index 8c0a406..f91aff2 100644 --- a/src/AST/Pretty.hs +++ b/src/AST/Pretty.hs @@ -196,7 +196,7 @@ ppExpr' d val expr = case expr of a' <- ppExpr' 9 val a b' <- ppExpr' 10 val b return $ ppParen (d > 8) $ - a' <+> ppString "!" <+> b' + a' <+> ppString "!" <> ppX expr <+> b' EShape _ e -> do e' <- ppExpr' 11 val e |