Files
freeCodeCamp/guide/english/haskell/misc/index.md

28 lines
449 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: miscellaneous
---
When you are bit comfortable with how Haskell works you
## hoogle
It's like Google but for Haskell libraries
To install hoogle with stack:
```shell
stack build hoogle
```
## lambda bot
2019-01-20 00:09:18 +00:00
An irc bot written in haskell, which can evaluate Haskell and install plugins.
[Homepage](https://wiki.haskell.org/Lambdabot)
2018-10-12 15:37:13 -04:00
2019-01-20 00:09:18 +00:00
If you're using GHC 6.10.x you can install the bot using:
2018-10-12 15:37:13 -04:00
2019-01-20 00:09:18 +00:00
```shell
cabal install lambdabot
```
2018-10-12 15:37:13 -04:00