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