{-# LANGUAGE NoImplicitPrelude #-} module Papa.Control.Applicative( const , return ) where import Control.Applicative(Applicative(pure)) const :: Applicative f => a -> f a const = pure return :: Applicative f => a -> f a return = pure