Files
newt/eg/ex.newt
2023-04-10 21:35:01 -07:00

10 lines
91 B
Plaintext

module Ex
data Bool : Type where
True : Bool
False : Bool
id : a -> a
id = \ a => a