1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 18:13:56 +03:00
juvix/tests/positive/StdlibList/Data/Maybe.mjuvix
2022-02-18 17:57:04 +01:00

8 lines
111 B
Plaintext

module Data.Maybe;
inductive Maybe (a : Type) {
nothing : Maybe a;
just : a → Maybe a;
}
end;