This commit is contained in:
Dennis Frieberg 2020-08-27 19:38:16 +02:00
commit bb9ff329e5
14 changed files with 249 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"