1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-07 16:22:14 +03:00
juvix/tests/positive/Reachability/Data/Maybe.juvix

8 lines
105 B
Plaintext

module Data.Maybe;
type Maybe (a : Type) :=
nothing : Maybe a |
just : a → Maybe a;
end;