aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-03-09 16:46:12 +0100
committerYann Herklotz <git@yannherklotz.com>2022-03-09 16:46:12 +0100
commit532aefeac1c9e454c85a8314a515ebfb701c0738 (patch)
treef56cbec18533c26a6a9561ba17eb0917e14017ff /src
downloadchoc-532aefeac1c9e454c85a8314a515ebfb701c0738.tar.gz
choc-532aefeac1c9e454c85a8314a515ebfb701c0738.zip
Add initial files
Diffstat (limited to 'src')
-rw-r--r--src/Lib.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Lib.hs b/src/Lib.hs
new file mode 100644
index 0000000..d36ff27
--- /dev/null
+++ b/src/Lib.hs
@@ -0,0 +1,6 @@
+module Lib
+ ( someFunc
+ ) where
+
+someFunc :: IO ()
+someFunc = putStrLn "someFunc"