codegen improvements

This commit is contained in:
2024-08-12 11:54:08 -07:00
parent d39c9aa9b2
commit 023e9e61ad
5 changed files with 55 additions and 38 deletions

View File

@@ -46,5 +46,12 @@ not = \ v => case v of
True => False
False => True
not2 : Bool -> Bool
not2 = \ v => case v of
True => False
x => True
data Void : U where