Idris2/tests/chez/constfold/Fold.idr
2022-09-29 16:34:41 +02:00

9 lines
155 B
Idris

import Data.Nat
main : IO ()
main = do
printLn (the Bits8 0xff + 100)
printLn (the Nat 12345)
printLn (the Nat (-12345))
printLn (271 `minus` 12)