summaryrefslogtreecommitdiff
path: root/prelude/Prelude.hs
blob: 8f5181fbacd93e8df1521565276b8d43d331a461 (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 Monoid.Compat
)
where

import Prelude.Compat
import Monoid.Compat