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

42 lines
820 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: miscellaneous
---
2019-07-19 15:29:31 -06:00
For when you are a bit more comfortable with how Haskell works.
2018-10-12 15:37:13 -04:00
## hoogle
It's like Google but for Haskell libraries
To install hoogle with stack:
```shell
stack build hoogle
```
2019-07-19 15:29:31 -06:00
## haskelly
A VS code plugin that allows for easier Haskell development
Get it [here.](https://marketplace.visualstudio.com/items?itemName=UCL.haskelly)
**(Requires Intero and QuickCheck)**
Install instructions:
```
stack install intero QuickCheck stack-run # for a global installation
stack build intero QuickCheck stack-run # for a local installation
```
2018-10-12 15:37:13 -04:00
## 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