Haskell is an advanced functional programming language, featuring static typing, lazy evaluation, and monadic effects. The primary implementation is GHC: a high-performance compiler with a runtime supporting many forms of parallelism and concurrency.
261
votes
15answers
24k views
How to learn Haskell
For a few days I've tried to wrap my head around the functional programming paradigm in Haskell. I've done this by reading tutorials and watching screencasts, but nothing really seems to stick.
Now, ...
167
votes
23answers
11k views
Why is Haskell used so little in the industry?
It is a wonderful, very fast, mature and complete language. It exists for a very long time and has a big set of libraries. Yet, it appears not to be widely used. Why ? I suspect it is because it is ...
164
votes
6answers
12k views
Large-scale design in Haskell?
What is a good way to design/structure large functional programs, especially in Haskell?
I've been through a bunch of the tutorials (Write Yourself a Scheme being my favorite, with Real World Haskell ...
161
votes
7answers
15k views
Good Haskell source to read and learn from
What are some open source programs that use Haskell and can be considered to be good quality modern Haskell? The larger the code base, the better.
I want to learn from their source code. I feel I'm ...
157
votes
8answers
5k views
How can a time function exist in functional programming?
I've to admit that I don't know much about functional programming. I read about it from here and there, and so came to know that in functional programming, a function returns the same output, for same ...
107
votes
10answers
9k views
Is functional GUI programming possible?
I've recently caught the FP bug (trying to learn Haskell), and I've been really impressed with what I've seen so far (first-class functions, lazy evaluation, and all the other goodies). I'm no expert ...
106
votes
9answers
7k views
Speed comparison with Project Euler: C vs Python vs Erlang vs Haskell
I have taken Problem #12 from Project Euler as a programming exercise and to compare my (surely not optimal) implementations in C, Python, Erlang and Haskell. In order to get some higher execution ...
94
votes
13answers
32k views
What are my IDE/Editor choices for Haskell?
I typically use Emacs with hasktags for editing Haskell but I would like to enumerate all the choices and hopefully get feedback on each.
Emacs
VIM
Visual Haskell
EclipseFP
leksah
SHIM (wasn't this ...
89
votes
4answers
17k views
What is the Haskell response to Node.js?
I believe the Erlang community is not envious of Node.js as it does non-blocking I/O natively and has ways to scale deployments easily to more than one processor (something not even built-in in ...
79
votes
0answers
9k views
Can anyone explain Monads? [closed]
Possible Duplicate:
What is a monad?
I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
74
votes
3answers
3k views
What are the best Haskell libraries to operationalize a program?
If I'm going to put a program into production, there are several things I need that program to do in order to consider it "operationalized" – that is, running and maintainable in a measurable and ...
73
votes
1answer
3k views
What's the status of multicore programming in Haskell?
What's the status of multicore programming in Haskell? What projects, tools, and libraries are available now? What experience reports have there been?
72
votes
3answers
12k views
A monad is just a monoid in the category of endofunctors, what's the problem? [closed]
Who first said
A monad is just a monoid in the
category of endofunctors, what's the
problem?
and on a less important note is this true and if so could you give an explanation (hopefully one ...
71
votes
4answers
6k views
Comparing Haskell's Snap and Yesod web frameworks
The two Haskell web frameworks in the news recently are Yesod (at 0.8) and Snap (at 0.4).
It's quite obvious that Yesod currently supports a lot more features than Snap. However, I can't stand the ...
70
votes
2answers
5k views
Real-world applications of zygohistomorphic prepromorphisms
Yes, these ones:
{-#LANGUAGE TypeOperators, RankNTypes #-}
import Control.Morphism.Zygo
import Control.Morphism.Prepro
import Control.Morphism.Histo
import Control.Functor.Algebra
import ...
69
votes
6answers
9k views
Haskell: difference between . (dot) and $ (dollar sign)
Can anybody explain what the difference is in Haskell between the dot (.), and the dollar sign ($). As I understand it, they are both syntactic sugar for not needing to use parentheses.
68
votes
19answers
4k views
Non-Mainstream Languages, Bad for your resume? [closed]
I got my BS in Computer Science about seven years ago. I spent two years in neuroscience research and the next three providing what amounts to tech support.
But I love computer programming - and I ...
67
votes
17answers
4k views
What language to learn after Haskell? [closed]
As my first programming language, I decided to learn Haskell. I'm an analytic philosophy major, and Haskell allowed me to quickly and correctly create programs of interest, for instance, transducers ...
65
votes
3answers
2k views
What Haskell representation is recommended for 2D, unboxed pixel arrays with millions of pixels?
I want to tackle some image-processing problems in Haskell. I'm working with both bitonal (bitmap) and color images with millions of pixels. I have a number of questions:
On what basis should I ...
63
votes
7answers
3k views
What are Haskell's strictness points?
We all know (or should know) that Haskell is lazy by default. Nothing is evaluated until it must be evaluated. So when must something be evaluated? There are points where Haskell must be strict. I ...
63
votes
8answers
10k views
What are the primary differences between Haskell and F#?
I've searched on the Internet for comparisons between F# and Haskell but haven't found anything really definitive. What are the primary differences and why would I want to choose one over the other?
59
votes
16answers
7k views
Beginners Guide to Haskell?
I've been looking for a decent guide to Haskell for some time, but haven't been able to find one that seems interesting enough to read through and/or makes sense.
I've had prior exposure to Haskell a ...
58
votes
9answers
3k views
How do functional programming languages work?
I was just reading this excellent post, and got some better understanding of what exactly object oriented programming is, how Java implements it in one extreme manner, and how functional programming ...
54
votes
6answers
7k views
How can I use functional programming in the real world?
Functional languages are good because they avoid bugs by eliminating state, but also because they can be easily parallelized automatically for you, without you having to worry about the thread count.
...
53
votes
9answers
10k views
Haskell, Lisp, and verbosity
For those of you experienced in both Haskell and some flavor of Lisp, I'm curious how "pleasant" (to use a horrid term) it is to write code in Haskell vs. Lisp.
Some background: I'm learning Haskell ...
52
votes
2answers
2k views
What are some compelling use cases for dependent method types?
Dependent method types, which used to be an experimental feature before, has now been enabled by default in the trunk, and apparently this seems to have created some excitement in the Scala community. ...
50
votes
3answers
2k views
Ordering of parameters to make use of currying
I have twice recently refactored code in order to change the order of parameters because there was too much code where hacks like flip or \x -> foo bar x 42 were happening.
When designing a ...
48
votes
5answers
4k views
Why is GHC so large/big?
Is there a simple answer: Why is GHC so big?
OCaml: 2MB
Python: 15MB
SBCL: 9MB
OpenJRE - 26MB
GHC: 113MB
Not interested in evangelism of "Why I shouldn't care about the size if Haskell is the ...
48
votes
3answers
3k views
Haskell function application and currying
I am always interested in learning new languages, a fact that keeps me on my toes and makes me (I believe) a better programmer. My attempts at conquering Haskell come and go - twice so far - and I ...
48
votes
7answers
3k views
Why are side-effects modeled as monads in Haskell?
Could anyone give some pointers on why the unpure computations in Haskell are modeled as monads?
I mean monad is just an interface with 4 operations, so what was the reasoning to modeling ...
46
votes
20answers
10k views
Learning Scala or Haskell
I'm considering dipping my toe in the functional programming world, and wondering if it would be better to start with Scala or Haskell. I'm coming at this primarily as a Python programmer. My only ...
45
votes
1answer
2k views
lenses, fclabels, data-accessor - which library for structure access and mutation is better
There are at least three popular libraries for accessing and manipulating fields of records. The ones I know of are: data-accessor, fclabels and lenses.
Personally I started with data-accessor and ...
45
votes
2answers
4k views
Running a Haskell program on the Android OS
Forenote: This is an extension of the thread started on /r/haskell
Lets start with the facts:
Android is one awesome Operating System
Haskell is the best programming language on the planet
...
45
votes
1answer
2k views
Haskell Weird Kinds: Kind of (->) is ?? -> ? -> *
When I was experimenting with Haskell kinds, and trying to get the kind of ->, and this showed up:
$ ghci
...
Prelude> :k (->)
(->) :: ?? -> ? -> *
Prelude>
Instead of the ...
42
votes
2answers
946 views
Recursion schemes for dummies?
I'm looking for some really simple, easy-to-grasp explanations of recursion schemes and corecursion schemes (catamorphisms, anamorphisms, hylomorphisms etc.) which do not require following lots of ...
42
votes
4answers
2k views
Reading GHC Core
Core is GHC's intermediate language. Reading Core can help you better understand the performance of your program. Someone asked me for documentation or tutorials on reading Core, but I couldn't find ...
42
votes
19answers
5k views
Suitable functional language for scientific/statistical computing?
I use mostly R and C for statistics-related tasks. Recently
I have been dealing with large datasets, typically 1e7-1e8
observations, and 100 features. They seem too big for R too
handle, and the ...
42
votes
11answers
5k views
Book recommendation for Haskell? [closed]
I would like to start Haskell, just out of curiosity.
What books do you recommend?
41
votes
8answers
2k views
Any Real-World Experience Using Software Transactional Memory?
It seems that there has been a recent rising interest in STM (software transactional memory) frameworks and language extensions. Clojure in particular has an excellent implementation which uses MVCC ...
40
votes
17answers
4k views
A Gentler Introduction to Functional Programming
I am trying to learn Haskell, and I really like it, but I can't wrap my head around most of it. Would Lisp, OCaml, etc. be a gentler introduction to functional programming?
39
votes
2answers
2k views
Difference between `data` and `newtype` in Haskell
where is the difference when i write
data Book = Book Int Int
newtype Book = Book Int Int
39
votes
5answers
5k views
What is the ecosystem for Haskell web development?
Inspired by this question and a recent affair, I'm wondering what's involved with Haskell web development.
Are there any Haskell web frameworks or template engines?
How would hosting a Haskell ...
38
votes
2answers
926 views
How do you write data structures that are as efficient as possible in GHC?
So sometimes I need to write a data structure I can't find on Hackage, or what I find isn't tested or quality enough for me to trust, or it's just something I don't want to be a dependency. I am ...
38
votes
2answers
3k views
Haskell math performance
I'm in the middle of porting David Blei's original C implementation of Latent Dirichlet Allocation to Haskell, and I'm trying to decide whether to leave some of the low-level stuff in C. The following ...
38
votes
22answers
3k views
What is your favourite cleverly written functional code?
What are your favourite short, mind-blowing snippets in functional languages?
My two favourite ones are (Haskell):
powerset = filterM (const [True, False])
foldl f v xs = foldr (\x g a -> g (f ...
38
votes
12answers
4k views
Write a Haskell interpreter in Haskell
A classic programming exercise is to write a Lisp/Scheme interpreter in Lisp/Scheme. The power of the full language can be leveraged to produce an interpreter for a subset of the language.
Is there a ...
38
votes
18answers
4k views
What's the fuss about Haskell?
I know a few programmers who keep talking about Haskell when they are among themselves, and here on SO everyone seems to love that language. Being good at Haskell seems somewhat like the hallmark of a ...
37
votes
3answers
861 views
What are the primary theoretical difficulties with adding ML-style modules to Haskell?
It is well known that Haskell-style typeclasses and ML-style modules offer different mechanisms for specifying interfaces. They are (possibly) equivalent in power, but in practice each has their own ...
37
votes
10answers
5k views
Yet another Haskell vs. Scala question
I've been using Haskell for several months, and I love it—it's gradually become my tool of choice for everything from one-off file renaming scripts to larger XML processing programs. I'm definitely ...
37
votes
19answers
2k views
Does anyone have any recommendations for starting out in functional programming?
I'm looking for some eBooks that will assist in my learning of functional programming. I haven't yet decided which language I will go with, but I've noticed a fair amount of bias towards LISP, ...