packages feed

hsdev-0.1.5.3: tests/test-package/ModuleTwo.hs

module ModuleTwo (
	f,
	twice
	) where

import ModuleOne (f)

-- | Apply function twice
twice :: (a -> a) -> a -> a
twice f = f . f