{-# LANGUAGE NoImplicitPrelude #-} -- | Commonly useful functions, a Prelude replacement. module Alpha ( -- * Re-export Protolude module X -- * General functions , (/@) -- * Debugging tools , say ) where import Protolude as X import Data.String -- | Debugging printf say :: String -> IO () say msg = putStrLn msg -- | Alias for map, fmap, <$> (/@) :: Functor f => (a -> b) -> f a -> f b (/@) = fmap