aboutsummaryrefslogtreecommitdiff
path: root/test/test-package/src/Lib.hs
blob: 877bbe5d2e9aa73891cd410347faf380c3fff509 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Lib
    ( someFunc
    ) where

import Types(Test(..))

-- | someFunc documentation
someFunc :: IO ()
someFunc = putStrLn "someFunc"

-- | mkTest documentation
mkTest :: Int -> Test
mkTest i = Test i