Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tutorials/01_fp-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ There are several editors you may use for writing Haskell programs, most probabl
* [Vim with plugins](https://wiki.haskell.org/Vim)
* [IntelliJ IDEA with HaskForce](http://haskforce.com) (or visit their [GitHub repo](https://github.com/carymrobbins/intellij-haskforce))
* [Atom with plugins](https://atom-haskell.github.io/overview/)
* [Visual Studio Code with plugins](https://medium.com/@dogwith1eye/setting-up-haskell-in-vs-code-with-stack-and-the-ide-engine-81d49eda3ecf)

Most probably you will need following stuff:

* [ghc-mod] = connector to [GHC] API for various stuff
* [ghc-mod] = connector to [GHC] API for various stuff, alternatively you can use [HIE](https://github.com/haskell/haskell-ide-engine)
* [hlint] = source code suggestion
* [hindent] = indenter, pretty print
* [stylish-haskell] = code prettifier ("good style")
Expand Down
2 changes: 1 addition & 1 deletion tutorials/08_webapp.md
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ Here are a few examples of simple and more complex web apps:

* [dbushenko/scotty-blog](https://github.com/dbushenko/scotty-blog)
* [ds-wizard/legacy-wizard](https://github.com/ds-wizard/legacy-wizard)
* [ds-wizard/dsw-server](https://github.com/ds-wizard/dsw-server)
* [ds-wizard/engine-backend](https://github.com/ds-wizard/engine-backend)


## Continuation-style web development
Expand Down