Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/Prelude/Flip.hs
module Prelude where flip :: (a -> b -> c) -> b -> a -> c flip f x y = f y x