mirror of
https://github.com/github/semantic.git
synced 2024-12-27 00:44:57 +03:00
13 lines
244 B
Haskell
13 lines
244 B
Haskell
{-# OPTIONS_GHC -Wno-unused-imports -Wno-unused-top-binds #-}
|
|
module Main (main) where
|
|
|
|
import Gauge
|
|
import qualified Evaluation
|
|
import qualified Tagging
|
|
|
|
main :: IO ()
|
|
main = defaultMain
|
|
[ Tagging.benchmarks
|
|
-- , Evaluation.benchmarks
|
|
]
|