tweaks to output, fix scope issue in pprint

This commit is contained in:
2024-11-15 16:49:31 -08:00
parent e6944bc842
commit 9faee86886
6 changed files with 18 additions and 15 deletions

View File

@@ -54,7 +54,7 @@ plus (S n) m = S (plus n m)
plus' : Nat -> Nat -> Nat
plus' = \ n m => case n of
Z => m
S n => S (plus n m)
S n => S (plus' n m)
-- We can define operators, currently only infix
-- and we allow unicode and letters in operators