5 lines
80 B
Haskell
5 lines
80 B
Haskell
|
module MyLib (someFunc) where
|
||
|
|
||
|
someFunc :: IO ()
|
||
|
someFunc = putStrLn "someFunc"
|