mirror of
https://github.com/ilyakooo0/Idris-dev.git
synced 2024-11-15 01:25:05 +03:00
17c7240825
+ Tutorial is now developed in a separate github repo. + Moved examples to top-level + Added binary of tutorial for v0.9.10
9 lines
113 B
Idris
9 lines
113 B
Idris
module Main
|
|
|
|
import btree
|
|
|
|
main : IO ()
|
|
main = do let t = toTree [1,8,2,7,9,3]
|
|
print (btree.toList t)
|
|
|