diff --git a/mima-run/Main.hs b/mima-run/Main.hs new file mode 100644 index 0000000..cf9a9cc --- /dev/null +++ b/mima-run/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = putStrLn "In the beginning, there was nothing." diff --git a/package.yaml b/package.yaml index 1b9e9a7..2f8c9db 100644 --- a/package.yaml +++ b/package.yaml @@ -26,6 +26,17 @@ dependencies: library: source-dirs: src +executables: + mima-run: + source-dirs: mima-run + main: Main.hs + ghc-options: + - -threaded + - -rtsopts + - -with-rtsopts=-N + dependencies: + - mima-tools + tests: spec: source-dirs: test