16 lines
289 B
Haskell
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
|