1
Fork 0
A replacement to the default Prelude.
Go to file
jrpotter 2ad6b67069 Include Control.Monad.Fix. 2020-03-29 18:36:16 -04:00
src Include Control.Monad.Fix. 2020-03-29 18:36:16 -04: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 Up package version. 2019-12-16 11:24:33 -05:00
postlude.cabal Up package version. 2019-12-16 11:24:33 -05:00
stack.yaml Remove reference to mtl. 2019-12-16 11:07:46 -05:00
stack.yaml.lock Remove reference to mtl. 2019-12-16 11:07:46 -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