Files
newt/eg/ex.newt
2023-05-20 16:20:36 -07:00

10 lines
101 B
Plaintext

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