1
Fork 0
postlude/README.md

24 lines
316 B
Markdown
Raw Permalink Normal View History

# Postlude
A replacement to the default Prelude.
## Usage
Disable the built-in prelude at the top of your file:
```haskell
{-# LANGUAGE NoImplicitPrelude #-}
```
Or directly in your project cabal file:
```haskell
default-extensions: NoImplicitPrelude
```
Then in your modules:
```haskell
import Postlude
```