diff options
author | dan <[email protected]> | 2021-04-11 07:58:45 +0200 |
---|---|---|
committer | dan <[email protected]> | 2021-04-11 07:58:45 +0200 |
commit | 3a40cbdf709588ae8421bb76db071387872dc4d4 (patch) | |
tree | 6edeb4d6729db457c2a7c792cfac74b9f1c839ae /app | |
download | bizexp-3a40cbdf709588ae8421bb76db071387872dc4d4.tar.gz bizexp-3a40cbdf709588ae8421bb76db071387872dc4d4.tar.bz2 bizexp-3a40cbdf709588ae8421bb76db071387872dc4d4.zip |
init
Diffstat (limited to 'app')
-rw-r--r-- | app/Main.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Main.hs b/app/Main.hs new file mode 100644 index 0000000..60d904e --- /dev/null +++ b/app/Main.hs @@ -0,0 +1,8 @@ +module Main where + +import qualified MyLib (someFunc) + +main :: IO () +main = do + putStrLn "Hello, Haskell!" + MyLib.someFunc |