packages feed

hablo-1.0.0.0: src/Pretty.hs

module Pretty (
    (.$)
  ) where

(.$) :: (a -> b) -> (b -> c) -> (a -> c)
(.$) f g = g . f