Idris2-boot/samples/bmain.idr
2020-02-25 21:37:48 +00:00

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)