hablo/src/Pretty.hs

7 lines
94 B
Haskell

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