mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
10 lines
159 B
Idris
10 lines
159 B
Idris
|
module A.Path.Of.Dires.Second
|
||
|
|
||
|
import public A.Path.Of.Dires.First
|
||
|
|
||
|
%default total
|
||
|
|
||
|
export
|
||
|
example : Tree Nat
|
||
|
example = Node (Node (Leaf 0) (Leaf 1)) (Leaf 2)
|