mirror of
https://github.com/anoma/juvix.git
synced 2025-01-05 22:46:08 +03:00
3fbc9c7c55
Closes #1644 #1635
13 lines
132 B
Plaintext
13 lines
132 B
Plaintext
module N;
|
|
|
|
open import M;
|
|
open import Stdlib.Prelude;
|
|
|
|
test : {A : Type} -> A -> A;
|
|
test x := x;
|
|
|
|
type Unit :=
|
|
unit : Unit;
|
|
|
|
end;
|