her.esy.fun/src/posts/0010-Haskell-Now/hspwg/src/MyLib.hs
Yann Esposito (Yogsototh) f95b37c771
A few changes to the project
2020-01-03 08:21:17 +01:00

9 lines
177 B
Haskell

{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
module MyLib (someFunc) where
import Protolude
someFunc :: IO ()
someFunc = putText "someFunc"