aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Lib.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Lib.hs b/src/Lib.hs
index f51f079..0717bf8 100644
--- a/src/Lib.hs
+++ b/src/Lib.hs
@@ -9,5 +9,6 @@ import System.Process (callCommand)
someFunc :: IO ()
someFunc = do
putStrLn "someFunc"
- a <- callCommand "ls -l"
+ a <- callCommand "gfortran test/test1.f90 -o test1"
+ a <- callCommand "./test1"
return ()