1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 17:07:28 +03:00
juvix/tests/positive/InstanceImport/Main.juvix
2024-10-23 16:02:56 +02:00

14 lines
175 B
Plaintext

module Main;
import M open;
import M open;
type Bool :=
| true
| false;
instance
boolI : T Bool := mkT λ{x := x};
main : Bool := case T.pp unit of unit := T.pp true;