10 lines
196 B
Haskell
10 lines
196 B
Haskell
-- | Rn the doctest executable
|
|
module Main where
|
|
|
|
import System.Process (callProcess)
|
|
|
|
doctest :: [String] -> IO ()
|
|
doctest = callProcess "doctest"
|
|
|
|
main :: IO ()
|
|
main = doctest ["--fast", "src"]
|