diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Lib.hs | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,6 @@ module Lib - ( someFunc + ( someFunc, + someFunc2 ) where import Development.Shake.FilePath ((</>)) @@ -12,3 +13,9 @@ someFunc = do a <- callCommand "gfortran test/test1.f90 -o test1" a <- callCommand $ "." </> "test1" return () + +someFunc2 :: IO () +someFunc2 = do + putStrLn "example" + a <- callCommand "cd example_project && stack run -- build" + return () |