mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 17:07:28 +03:00
17 lines
229 B
Plaintext
17 lines
229 B
Plaintext
module main;
|
|
|
|
import Other;
|
|
|
|
type Tree (A : Type) :=
|
|
node (Tree A)
|
|
(Tree A)
|
|
(Tree A)
|
|
(Tree A)
|
|
(Tree A)
|
|
(Tree A)
|
|
(Tree A)
|
|
(Tree A)
|
|
(Tree A);
|
|
|
|
type Foo := mkFoo (Tree Foo);
|