2c00540485
This should give us more complete coverage of newer base features. See #4255.
16 lines
279 B
Haskell
16 lines
279 B
Haskell
{-# LANGUAGE NoImplicitPrelude #-}
|
|
{-# LANGUAGE PackageImports #-}
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
-- This custom Prelude emulates the API of the prelude
|
|
-- with base 4.8.
|
|
|
|
module Prelude
|
|
(
|
|
module Prelude.Compat
|
|
, module Monoid.Compat
|
|
)
|
|
where
|
|
|
|
import Prelude.Compat
|
|
import Monoid.Compat
|