aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-10-28 16:38:22 +0100
committerYann Herklotz <git@yannherklotz.com>2021-10-28 16:38:22 +0100
commitd04cc0b59c49511b3ebae20b0b2ce98d61f04c64 (patch)
treecd7365ddfb759ece64b44fa06f1f687a09ea76ed /src
downloadgsa-parser-d04cc0b59c49511b3ebae20b0b2ce98d61f04c64.tar.gz
gsa-parser-d04cc0b59c49511b3ebae20b0b2ce98d61f04c64.zip
Initial commit
Diffstat (limited to 'src')
-rw-r--r--src/Lib.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Lib.hs b/src/Lib.hs
new file mode 100644
index 0000000..1055c22
--- /dev/null
+++ b/src/Lib.hs
@@ -0,0 +1,7 @@
+module Lib
+ ( someFunc,
+ )
+where
+
+someFunc :: IO ()
+someFunc = putStrLn "hey"