lish/src-benchmark/Main.hs
Yann Esposito (Yogsototh) 6167580bc4
first commit for lish
2017-02-18 17:57:37 +01:00

7 lines
131 B
Haskell

import Criterion
import Criterion.Main
import Lib (inc)
main :: IO ()
main = defaultMain [bench "inc 41" (whnf inc (41 :: Int))]