2018-03-18 09:20:21 -07:00
|
|
|
{-# LANGUAGE NoImplicitPrelude #-}
|
2018-03-16 10:08:38 -07:00
|
|
|
{-# LANGUAGE PackageImports #-}
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2018-03-18 09:20:21 -07:00
|
|
|
-- 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.
|
|
|
|
|
2018-03-16 10:08:38 -07:00
|
|
|
module Prelude
|
|
|
|
(
|
2018-03-18 09:20:21 -07:00
|
|
|
module Prelude.Compat
|
2018-03-16 10:08:38 -07:00
|
|
|
, Semigroup(..)
|
|
|
|
)
|
|
|
|
where
|
|
|
|
|
2018-03-18 09:20:21 -07:00
|
|
|
import Prelude.Compat
|
2018-03-16 10:08:38 -07:00
|
|
|
import Data.Semigroup (Semigroup(..)) -- includes (<>)
|