28 lines
449 B
Markdown
28 lines
449 B
Markdown
---
|
|
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
|
|
An irc bot written in haskell, which can evaluate Haskell and install plugins.
|
|
[Homepage](https://wiki.haskell.org/Lambdabot)
|
|
|
|
If you're using GHC 6.10.x you can install the bot using:
|
|
|
|
```shell
|
|
cabal install lambdabot
|
|
```
|
|
|
|
|
|
|