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