churf/test_program
2023-03-22 12:45:51 +01:00

4 lines
75 B
Text

data Maybe (a) where {
Nothing : Maybe (a)
Just : a -> Maybe (a)
}