mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
11 lines
140 B
Plaintext
11 lines
140 B
Plaintext
module N;
|
|
|
|
import M open;
|
|
import Stdlib.Prelude open hiding {Unit};
|
|
|
|
test : {A : Type} -> A -> A
|
|
| x := x;
|
|
|
|
type Unit :=
|
|
| unit : Unit;
|