aggreact/src-benchmark/Main.hs
Yann Esposito (Yogsototh) 831aa825eb
initial commit
2018-12-02 12:40:07 +01:00

9 lines
149 B
Haskell

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