diff options
Diffstat (limited to 'src/Lib.hs')
-rw-r--r-- | src/Lib.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 () |