initial commit

This commit is contained in:
Jonathan Lamothe
2018-12-06 14:31:36 -05:00
commit 78a9a23d17
11 changed files with 393 additions and 0 deletions

6
src/Lib.hs Normal file
View File

@@ -0,0 +1,6 @@
module Lib
( someFunc
) where
someFunc :: IO ()
someFunc = putStrLn "someFunc"