packages feed

reflex-ghci-0.1.4.1: tests/lib-pkg/src/MyLib.hs

module MyLib (someFunc) where

import MyLib.One
import MyLib.Two
import MyLib.Three

someFunc :: IO ()
someFunc = putStrLn "someFunc"

err :: IO ()
err = do
  Just a <- return Nothing
  putStrLn a

done :: IO ()
done = putStrLn "done"