human-friendly-id-gen/src-benchmark/Main.hs
Yann Esposito (Yogsototh) 05e4fb61e2
initial commit
2018-09-02 13:02:08 +02: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))]