|
|
|
|
|
by cyclinghacker
3056 days ago
|
|
My advice would be start with stack and hpack, and remain with your editor or IDE of choice to start with. Learning any new language is difficult enough without having to also deal with a different workflow. This is my recipe for starting with haskell and intellij:
- install stack, run `stack new helloworld simple-hpack`
- make sure it builds: `cd helloworld && stack test --exec helloworld`
- install https://github.com/rikvdkleij/intellij-haskell and follow the `Getting started' guide |
|
Interesting. I would advice to start with plain cabal. One has to learn how to deal with cabal anyway, so there's no point adding stack on top of it from the start.