summaryrefslogtreecommitdiff
path: root/src/Lib.hs
blob: 5cb161b29259cfda7a99b1a615bc3b2f750ba39a (plain)
1
2
3
4
5
6
module Lib
    ( someFunc
    ) where

someFunc :: IO ()
someFunc = putStrLn "someFunc was called and says Hello World!! (NOW IT WORKS, right?!)"