vote up 3 vote down star
3

In the spirit of the other common mistakes in questions, what are the most common mistakes that Haskell programmers make? I've been teaching myself Haskell for a little while and I am starting to feel comfortable enough with the language to start applying it in the real world.

flag
1  
And another should-be-community-wiki... – chaos Aug 1 at 17:55
This style of question is usually better appreciated as a Community Wiki. – zombat Aug 1 at 17:55
It's hard to imagine why this is "not a real question" when there are so many other "common programming mistakes" questions on SO that have survived. – Robert Harvey Aug 1 at 18:14
1  
It's impossible to enforce your standard, as there are no system safeguards in place to do so. It is especially difficult to enforce it consistently, as the Java question so eloquently illustrates. – Robert Harvey Aug 1 at 18:19
1  
@Imagist: as indicated by Robert Harvey's 5 comments in your own thread, some people are just on a crusade. Community wiki means "community owned", it is not a category and its not a synonym for "discussion" questions. Ignore the community wiki police. – Juliet Aug 1 at 19:44
show 6 more comments

3 Answers

vote up 8 vote down check

The most common mistake I know of is introducing a space leak through lazy evaluation. There are lots of ways to achieve this mistake, but one that especially nails programmers with other functional-programming experience is to put a result in an accumulating parameter, thinking that the accumulating parameter will take constant space. In many cases the accumulating parameter takes linear space because parameters are not evaluated.

Another common mistake is to forget that let is always recursive. An unintentional

let x = ... x ...

can lead to baffling outcomes.

Most other common bad experiences manifest not as mistakes but as trouble getting programs past the type checker, or difficulty understanding the monadic I/O model. Difficulties with list comprehensions and with do notations occur occasionally.

In general the difficulties faced by beginning Haskell programmers include

  • Large language with many dark corners, especially in the type system
  • Trouble getting programs to compile, especially when they do I/O
  • Doing everything in the IO monad
  • Great difficulty predicting the time and space behavior of lazy functional programs
link|flag
vote up 3 vote down

A common mistake for beginning Haskell programmers is to forget the difference between constructor and type namespaces. That was such a beginner's mistake that I'm about embarrassed to have my name attached to it, but I'm pretty confident that others will stumble upon that answer when they have a similar problem, so may as well keep it out there.

link|flag
vote up 2 vote down

The difference between [] and [[]]: the empty list and the list with 1 element, namely the empty list. This one especially pops up in base cases of recursive functions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.