mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 16:22:14 +03:00
3fbc9c7c55
Closes #1644 #1635
8 lines
105 B
Plaintext
8 lines
105 B
Plaintext
module Data.Maybe;
|
|
|
|
type Maybe (a : Type) :=
|
|
nothing : Maybe a |
|
|
just : a → Maybe a;
|
|
|
|
end;
|