-- | Run the doctest executable module Main (main) where import System.Process (callProcess) doctest :: IO () doctest = callProcess "cabal" ["repl", "--with-ghc=doctest"] main :: IO () main = doctest