6 lines
88 B
Haskell
6 lines
88 B
Haskell
module Lib
|
|
( someFunc
|
|
) where
|
|
|
|
someFunc :: IO ()
|
|
someFunc = putStrLn "someFunc"
|