Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/PreludeIO/Functor_IO.hs
module Prelude(Functor(..)) where instance Functor IO where fmap f x = x >>= (return . f)