aboutsummaryrefslogtreecommitdiff
path: root/prelude/Prelude.hs
blob: 98185b57a202081545a36d3377ff1ca699d931d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{-# 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