mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
9 lines
148 B
Idris
9 lines
148 B
Idris
module A.Path.Of.Dires.First
|
|
|
|
%default total
|
|
|
|
public export
|
|
data Tree : Type -> Type where
|
|
Leaf : a -> Tree a
|
|
Node : Tree a -> Tree a -> Tree a
|