1
1
mirror of https://github.com/idris-lang/Idris2.git synced 2024-12-24 12:14:26 +03:00
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)