Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.
502
votes
15answers
56k views
Getting started with Haskell [closed]
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, ...
360
votes
6answers
51k views
“What part of Milner-Hindley do you not understand?”
I can't find it now, but I swear there used to be a T-shirt for sale featuring the immortal words:
What part of
do you not understand?
In my case, the answer would be... all of it!
In ...
302
votes
11answers
30k 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 ...
234
votes
7answers
18k 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 ...
222
votes
7answers
21k views
Good Haskell source to read and learn from [closed]
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 ...
202
votes
9answers
26k 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 ...
168
votes
10answers
19k 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 ...
157
votes
7answers
21k views
Haskell: difference between . (dot) and $ (dollar sign)
What is the difference between the dot (.) and the dollar sign ($)?. As I understand it, they are both syntactic sugar for not needing to use parentheses.
153
votes
3answers
11k views
What does “coalgebra” mean in the context of programming?
I have heard the term "coalgebras" several times in functional programming and PLT circles, especially when the discussion is about objects, comonads, lenses, and such. Googling this term gives pages ...
141
votes
16answers
50k 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 ...
140
votes
4answers
15k 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 ...
140
votes
3answers
22k views
A monad is just a monoid in the category of endofunctors, what's the problem?
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 ...
136
votes
1answer
3k views
Proper use of the HsOpenSSL API to implement a TLS Server
I'm trying to figure out how to properly use the OpenSSL.Session API in a concurrent context
E.g. assume I want to implement a stunnel-style ssl-wrapper, I'd expect to have the following basic ...
121
votes
5answers
23k 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 ...
114
votes
1answer
7k 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?
111
votes
5answers
4k views
Abusing the algebra of algebraic data types - why does this work?
The 'algebraic' expression for algebraic data types looks very suggestive to someone with a background in mathematics. Let me try to explain what I mean.
Having defined the basic types
Product •
...
110
votes
5answers
6k views
What's so bad about Template Haskell?
It seems that Template Haskell is often viewed by the Haskell community as an unfortunate convenience. It's hard to put into words exactly what I have observed in this regard, but consider these few ...
109
votes
1answer
8k 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 ...
109
votes
3answers
13k 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
...
86
votes
3answers
5k 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 ...
86
votes
1answer
3k views
Exceptions in Yesod
I had made a daemon that used a very primitive form of ipc (telnet and send a String that had certain words in a certain order). I snapped out of it and am now using JSON to pass messages to a Yesod ...
85
votes
3answers
4k 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 ...
85
votes
1answer
2k views
+50
Parallel mapM on Repa arrays
In my recent work with Gibbs sampling, I've been making great use of the RVar which, in my view, provides a near ideal interface to random number generation. Sadly, I've been unable to make use of ...
84
votes
4answers
6k 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. ...
84
votes
2answers
6k 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 ...
83
votes
3answers
2k views
What optimizations can GHC be expected to perform reliably?
GHC has a lot of optimizations that it can perform, but I don't know what they all are, nor how likely they are to be performed and under what circumstances.
My question is: what transformations can ...
82
votes
17answers
6k 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 ...
82
votes
7answers
16k 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?
79
votes
20answers
16k views
Learning Scala or Haskell [closed]
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 ...
79
votes
0answers
10k views
Can anyone explain Monads? [duplicate]
Possible Duplicate:
What is a monad?
I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
78
votes
9answers
18k views
Haskell, Lisp, and verbosity [closed]
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 ...
76
votes
7answers
5k 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 ...
76
votes
4answers
4k 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 ...
76
votes
7answers
4k 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 ...
75
votes
16answers
10k views
Beginners Guide to Haskell? [closed]
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 ...
75
votes
6answers
4k views
Haskell: What is Weak Head Normal Form?
What does Weak Head Normal Form (WHNF) mean? What does Head Normal form (HNF) and Normal Form (NF) mean?
Real World Haskell states:
The familiar seq function evaluates an expression to what we ...
74
votes
5answers
7k 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 ...
70
votes
3answers
5k views
What does the exclamation mark mean in a Haskell declaration?
I came across the following definition as I try to learn Haskell using a real project to drive it. I don't understand what the exclamation mark in front of each argument means and my books didn't ...
69
votes
9answers
4k 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 ...
69
votes
5answers
3k views
Functional design patterns
There are a lot of functional idioms: monads, applicatives, arrows, etc. They are documented in different articles but unfortunately I don't know any book or article where they're summarized in one ...
67
votes
6answers
10k 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.
...
67
votes
2answers
2k views
What is the combinatory logic equivalent of intuitionistic type theory?
I recently completed a university course which featured Haskell and Agda (a dependent typed functional programming language), and was wondering if it was possible to replace lambda calculus in these ...
65
votes
1answer
2k views
How do exceptions in Haskell work?
In GHCi:
Prelude> error (error "")
*** Exception:
Prelude> (error . error) ""
*** Exception: *** Exception:
Why isn't the first one a nested exception?
61
votes
7answers
2k views
Lazy Evaluation and Time Complexity
I was looking around stackoverflow Non-Trivial Lazy Evaluation, which led me to Keegan McAllister's presentation: Why learn Haskell. In slide 8, he shows the minimum function, defined as:
minimum = ...
59
votes
14answers
7k 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 ...
59
votes
12answers
11k views
What is Haskell actually useful for?
I really hope nobody deems this question as closable because it's a pretty straight forward one.
I Googled this question, but not much information was found that was concise and informative for me.
...
59
votes
2answers
4k views
Small Haskell program compiled with GHC into huge binary
My source code can be found here: https://github.com/tm1rbrt/S3DM
When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
59
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 ...
59
votes
1answer
2k views
What is the best way to test and interact with inner functions defined inside a toplevel function?
When I program in Javascript, I find it extremely convenient to be able to use the debugger to halt program execution at any point and to be able to runs commands and inspect variables from there.
...
58
votes
7answers
4k views
Does Haskell require a garbage collector?
I'm curious as to why Haskell implementations use a GC.
I can't think of a case where GC would be necessary in a pure language. Is it just an optimization to reduce copying, or is it actually ...