Haskell is a purely functional programming language. An open-source product of more than twenty years of cutting-edge research, it allows rapid development of robust, concise, correct software. With strong support for integration with other languages, built-in concurrency and parallelism, debuggers, profilers, rich libraries and an active community, Haskell makes it easier to produce flexible, maintainable, high-quality software.
Checklist
To avoid answering the same questions over and over again, please check the list of interesting questions and this checklist:
Performance issues
In case of performance issues, please make sure that you compile your code with optimizations enabled. Passing -O2 makes many performance issues go away.
It is also important to know, which version of the compiler and libraries you use. Giving that piece of information may decrease the time needed to answer your question extremely.
Getting started
- Download the Haskell Platform for your platform. This includes the state-of-the-art Glasgow Haskell Compiler (GHC) and common developer tools and libraries.
- Check out these Stack Overflow questions with links to popular websites, books, and tutorials:
- Have fun, and ask questions!
Interesting questions/answers
- Why are side-effects modeled as monads in Haskell?
- foldl versus foldr behavior with infinite lists
- What are practical uses of applicative style?
- Haskell: How does non-strict and lazy differ?
- Derivation of a monad transformer (answer to Could i be using a bind/fmap here)
- Comparing Haskell's Snap and Yesod web frameworks
- Asymmetry in the bind function
Community
Other places for discussing Haskell, beyond the question & answer format of Stack Overflow:
- Wiki: HaskellWiki
- Mailing lists: see here
- reddit: /r/haskell
- Google+: Haskell Community
- IRC: #haskell on freenode
