pandoc/prelude/Prelude.hs
John MacFarlane 2c00540485 Use base-compat for our custom prelude.
This should give us more complete coverage of newer
base features.

See #4255.
2018-01-14 18:34:26 -08:00

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