mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-23 19:29:17 +03:00
7 lines
228 B
Haskell
7 lines
228 B
Haskell
-- You can benchmark your code quickly and effectively with Criterion. See its
|
|
-- website for help: <http://www.serpentine.com/criterion/>.
|
|
import Criterion.Main
|
|
|
|
main :: IO ()
|
|
main = defaultMain [bench "const" (whnf const ())]
|