hsdev-0.2.5.1: tests/test-package/ModuleOne.hs
module ModuleOne ( test, forkIO, untypedFoo ) where import Control.Concurrent (forkIO) -- | Some test function test :: IO () test = return () -- | Some function without type untypedFoo x y = x + y
module ModuleOne ( test, forkIO, untypedFoo ) where import Control.Concurrent (forkIO) -- | Some test function test :: IO () test = return () -- | Some function without type untypedFoo x y = x + y