File: main.hs

package info (click to toggle)
haskell-mono-traversable 1.0.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 280 kB
  • sloc: haskell: 3,596; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE CPP #-}

#if MIN_VERSION_gauge(0,2,0)
import Gauge
#else
import Gauge.Main
#endif

import Sorting (sortingBenchmarks)
import InitTails (initTailsBenchmarks)


main :: IO ()
main = defaultMain
  [ sortingBenchmarks
  , initTailsBenchmarks
  ]