initial project setup

This commit is contained in:
qvalentin 2021-09-21 10:59:13 +02:00
commit 90fd606fb3
11 changed files with 363 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"