1
Fork 0
A replacement to the default Prelude.
Go to file
Joshua Potter a8c5b43dc8 Include from non-GHC specific imports.
Add more exports from applicative and monad.
2019-12-02 10:20:35 -05:00
src Include from non-GHC specific imports. 2019-12-02 10:20:35 -05:00
.gitignore Initial commit. 2017-11-25 17:58:39 -08:00
LICENSE Converted to new stack format. 2018-01-14 00:20:32 -08:00
README.md Setup default Prelude and basic documentation. 2017-11-25 18:49:55 -08:00
Setup.hs Initial commit. 2017-11-25 17:58:39 -08:00
package.yaml Correct pushed version. 2018-04-22 22:30:22 -07:00
postlude.cabal Include from non-GHC specific imports. 2019-12-02 10:20:35 -05:00
stack.yaml Update free package to allow version 5.0.1. 2018-03-14 10:28:56 -07:00
stack.yaml.lock Include from non-GHC specific imports. 2019-12-02 10:20:35 -05:00

README.md

Postlude

A replacement to the default Prelude.

Usage

Disable the built-in prelude at the top of your file:

{-# LANGUAGE NoImplicitPrelude #-}

Or directly in your project cabal file:

default-extensions: NoImplicitPrelude

Then in your modules:

import Postlude