diff options
Diffstat (limited to 'src/Lib.hs')
-rw-r--r-- | src/Lib.hs | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -2,5 +2,12 @@ module Lib ( someFunc ) where +-- import Development.Shake (cmd) +import System.Process (callCommand) + + someFunc :: IO () -someFunc = putStrLn "someFunc" +someFunc = do + putStrLn "someFunc" + a <- callCommand "ls -l" + return () |