pandoc/prelude/Prelude.hs
John MacFarlane 39f3d67848 Fix import.
2018-01-14 22:57:05 -08:00

16 lines
289 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 Data.Monoid.Compat
)
where
import Prelude.Compat
import Data.Monoid.Compat