aboutsummaryrefslogtreecommitdiffstats
path: root/src/Lib.hs
diff options
context:
space:
mode:
authorTeddy Wing2017-07-16 20:15:50 +0200
committerTeddy Wing2017-07-16 20:18:36 +0200
commit06c681f7cf3c59f5900063fa60582ce2b084369d (patch)
treee19c8655b3945d48bc79944e2565c399514e9d90 /src/Lib.hs
downloadsorbot-06c681f7cf3c59f5900063fa60582ce2b084369d.tar.bz2
New Haskell Stack project
$ stack new sorbot new-template GHC v8.0.2
Diffstat (limited to 'src/Lib.hs')
-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"