mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 02:23:44 +03:00
4f10bfcfd2
This is referred to in the documentation, so should be there
8 lines
112 B
Idris
8 lines
112 B
Idris
module Main
|
|
|
|
import BTree
|
|
|
|
main : IO ()
|
|
main = do let t = toTree [1,8,2,7,9,3]
|
|
print (BTree.toList t)
|