Idris2/samples/bmain.idr

8 lines
112 B
Idris
Raw Normal View History

module Main
import BTree
main : IO ()
main = do let t = toTree [1,8,2,7,9,3]
print (BTree.toList t)