aboutsummaryrefslogtreecommitdiff
path: root/prelude
diff options
context:
space:
mode:
Diffstat (limited to 'prelude')
-rw-r--r--prelude/Prelude.hs14
1 files changed, 7 insertions, 7 deletions
diff --git a/prelude/Prelude.hs b/prelude/Prelude.hs
index 9c8ac9363..5ea523433 100644
--- a/prelude/Prelude.hs
+++ b/prelude/Prelude.hs
@@ -1,17 +1,17 @@
+{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE CPP #-}
+-- The intent is that this Prelude provide the API of
+-- the base 4.11 Prelude in a way that is portable for
+-- all base versions.
+
module Prelude
(
- module P
-, Monoid(..)
+ module Prelude.Compat
, Semigroup(..)
-, Applicative(..)
)
where
-import "base" Prelude as P
+import Prelude.Compat
import Data.Semigroup (Semigroup(..)) -- includes (<>)
-#if MIN_VERSION_base(4,11,0)
-import Data.Monoid (Monoid(..))
-#endif