4 lines
75 B
Text
4 lines
75 B
Text
data Maybe (a) where {
|
|
Nothing : Maybe (a)
|
|
Just : a -> Maybe (a)
|
|
}
|