Instantiate haskell template
This commit is contained in:
commit
5d02a9e424
9 changed files with 242 additions and 0 deletions
11
src/FilePack.hs
Normal file
11
src/FilePack.hs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
module FilePack (
|
||||
greet,
|
||||
) where
|
||||
|
||||
import Control.Monad.IO.Class (
|
||||
MonadIO,
|
||||
liftIO,
|
||||
)
|
||||
|
||||
greet :: MonadIO m => String -> m ()
|
||||
greet = liftIO <$> putStrLn
|
||||
Loading…
Add table
Add a link
Reference in a new issue