Initialize stack environment and repository

This commit is contained in:
2022-06-28 20:30:09 -05:00
commit b4d6e9c9d1
12 changed files with 231 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"