vote up 15 vote down star
1

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?

flag

49% accept rate

9 Answers

vote up 24 vote down check

Haskell is a "pure" functional language, where as F# has aspects of both imperative/OO and functional languages. Haskell also has lazy evaluation, which is fairly rare amongst functional languages.

What do these things mean? A pure functional language, means there are no side effects (or changes in shared state, when a function is called) which means that you are guaranteed that if you call f(x), nothing else happens besides returning a value from the function, such as console output, database output, changes to global or static variables.. and although Haskell can have non pure functions (through monads), it must be 'explicitly' implied through declaration.

Pure functional languages and 'No side effect' programming has gained popularity recently as it lends itself well to multi core concurrency, as it is much harder to get wrong with no shared state, rather than a myriad of locks & semaphores.

Lazy evaluation is where a function is NOT evaluated until it is absolutely necessary required. meaning that many operation can be avoided when not necessary. Think of this in a basic C# if clause such as this;

if(IsSomethingTrue() && AnotherThingTrue()) { do something; }

If IsSomethingTrue() is false then AnotherThingTrue() method is never evaluated,

While Haskell is an amazing language, the major benefit of F# (for the time being), is that it sits on top of the CLR. This lends it self to polyglot programming. One day, you may write your web UI in ASP.net MVC, your business logic in C#, your core algorithms in F# and your unit tests in Ironruby.... All amongst the the .Net framework.

Listen to the latest Software Engineering radio with Simon Peyton Jones for more info on Haskell. http://www.se-radio.net/

good luck

link|flag
excellent description of polyglot programming (+1) – zachrrs May 16 at 3:41
Another potential major benefit of F# (depending on the situation) is that it's not lazy, which means that the learning curve for reasoning about space-time behaviour will be much simpler for virtually everyone. – Curt Sampson May 19 at 9:02
vote up 2 vote down

A major difference, which is probably a result ofthe purity but I less see mentioned, is the pervasive use of monads. As is frequently pointed out, monads can be built in most any language, but life changes greatly when they are used pervasively throughout the libraries, and you use them yourself.

Monads provide something seen in a much more limited way in other languages: abstraction of flow control. They're incredibly useful and elegant ways of doing all sorts of things, and a year of Haskell has entirely changed the way I program, in the same way that moving from imperative to OO programming many years ago changed it, or, much later, using higher-order functions did.

Unfortunately, there's no way in a space like this to provide enough understanding to let you see what the difference is. In fact, no amount of writing will do it; you simply have to spend enough time learning and writing code to gain a real understanding.

As well, F# sometimes may become slightly less functional or more awkward (from the functional programming point of view) when you interface with the .NET platform/libraries, as the libraries were obviously designed from an OO point of view.

So you might consider your decision this way: are you looking to try out one of these languages in order to get a quick, relatively small increment of improvement, or are you willing to put in more time and get less immediate benefit for something bigger in the long term. (Or, at least, if you don't get something bigger, the easy ability to switch to the other quickly?) If the former, F# is your choice, if the latter, Haskell.

A couple of other unrelated points:

Haskell has slightly nicer syntax, which is no suprise, since the designers of Haskell knew ML quite well. However, F#'s 'light' syntax goes a long way toward improving ML syntax, so there's not a huge gap there.

In terms of platforms, F# is of course .NET; how well that will work on Mono I don't know. GHC compiles to machine code with its own runtime, working well under both Windows and Unix, which compares to .NET in the same way, that, say, C++ does. This can be an advantage in some circumstances, especially in terms of speed and lower-level machine access. (I had no problem writing a DDE server in Haskell/GHC, for example; I don't think you could do that in any .NET language, and regardless, MS certainly doesn't want you doing that.)

cjs@cynic.net

link|flag
vote up -1 vote down

Haskell is a bleeding-edge research language complete with incompatible implementations, buggy foundations, few usable libraries and virtually no practically-minded users. In other words, Haskell is an academic curiosity used for little more than Haskell research.

F# was built from the most of the mature features of languages like Haskell and provides a huge number of practically-indispensable advantages in comparison:

  • F# runs on .NET which provides a concurrent garbage collector that can be used for GUI programming. Haskell has only non-concurrent GCs that incurs arbitrarily-long stalls, rendering it useless for real-world GUI programming.

  • F# inherits many great libraries from .NET. Haskell has poor libraries even among research languages.

  • F# is predictably performant whereas Haskell's performance and memory consumption is wildly unpredictable. For example, a recent benchmark showed that the humble hash table is 32x faster in F# than Haskell (!).

  • F# books are of much higher quality and are more pragmatic than Haskell books.

  • F# is much easier to get started with and use because it has modern IDE tools. Haskell has only an alpha release IDE with no type throwback, documentation throwback and no integrated REPL.

  • Despite being much newer, F# already has a much longer list of success stories such as Halo 3, AdCenter, F# for Visualization, F# for Numerics, .NET PDF toolkit and so on. Haskell had one success story that was version control software called Darcs but it was plagued with reliability and performance problems and its use is now in decline having only garnered a few thousand (primarily Haskell) users in its prime.

Assuming you are a practically-minded programmer, there is little reason to choose Haskell. If you want a functional language with excellent Linux and OS X support, lots of real-world users, better symbolic performance, lots of libraries and some great language features (like polymorphic variants, functors and structurally-typed OOP) then OCaml is the obvious choice and not Haskell.

link|flag
It's really too bad this answer is getting voted down. It offers a more pragmatic opinion than the comparison of quicksorts and such that we see on most sites. – Jimmy2Times May 2 at 23:48
It's getting voted down because Jon Harrop is a well known troll who decides that certain languages (e.g. Haskell, Lisp) are bad and then goes all out to denigrate them wherever he can using a mixture of half-truths, biased statistics and exaggeration. Check out some of his contributions to reddit (reddit.com/r/programming/user/jdh30) for examples. Specific things wrong with this answer include (but are not limited to) his statement about books (Real World Haskell has sold a lot of copies and received a lot of praise compared to his own F# book); and the list of success stories. – Ganesh Sittampalam May 4 at 19:16
2  
"hsenag" is Ganesh Sittampalam, a Haskell user who works at Credit Suisse in London. When I was writing a business management report about the use of functional programming in industry, Ganesh grossly misled me about the use of Haskell where he works and about his own position within the company. You can check the book reviews easily (the Reddit article "Is Real World Haskell any good?" contains about 40 negative comments about the book). Checking the "success stories" he refers to will take a lot longer. The last time I did so, I found they were mostly fakes. – Jon Harrop May 5 at 5:52
1  
The accusations about me are simply not true. He's made them before on reddit and never provided any evidence to back them up (e.g. reddit.com/r/programming/…). The reddit article about the book also contains lots of positive comments and much of the criticism is along the lines "good but could have been better". There are several industrial success stories about Haskell that you can find documented in various venues like cufp.galois.com/ and in experience reports published at ICFP (icfpconference.org). – Ganesh Sittampalam May 5 at 7:17
1  
I'm not quite sure why you think the fact that you post biased misleading information on the Internet would be of any relevance to the best choice of language for a specific set of circumstances. – Ganesh Sittampalam May 6 at 20:41
show 3 more comments
vote up 9 vote down

Big differences:

  • Platform
  • Object orientation
  • Laziness

The similarities are more important than the differences. Basically, you should use F# if you are on .NET already, Haskell otherwise. Also, OO and laziness mean that F# is closer to what you (probably) already know, so it is probably easier to learn.

Platform : Haskell has its own runtime, F# uses .NET. I don't know what the performance difference is, although I suspect the average code is about the same before optimisation. F# has the advantage if you need the .NET libraries.

Object orientation : F# has OO, and is very careful to make sure that .NET classes are easy to use even if your code isn't OO. Haskell has type classes which let you do something like OO, in a weird sort of way. They are like Ruby mixins crossed with Common Lisp generic functions. They're a little like Java/C# interfaces.

Laziness : Haskell is lazy, F# is not. Laziness enables some nice tricks and makes some things that look slow actually execute fast. But I find it a lot harder to guess how fast my code will run. Both languages let you use the other model, you just have to be explicit about it in your code.

Minor differences:

  • Syntax : Haskell has slightly nicer syntax in my opinion. It's a little more terse and regular, and I like declaring types on a separate line. YMMV.
  • Tools : F# has excellent Visual Studio integration, if you like that sort of thing. Haskell also has an older Visual Studio plugin, but I don't think it ever got out of beta. Haskell has a simple emacs mode, and you can probably use OCaml's tuareg-mode to edit F#.
  • Side effects : Both languages make it pretty obvious when you are mutating variables. But Haskell's compiler also forces you to mark side effects whenever you use them. The practical difference is that you have to be a lot more aware of when you use libraries with side effects as well.
link|flag
vote up 0 vote down

Even though Haskell, is a "purely"functional language - it allows programmers to declare their side effects (using a monad). Additionally it includes a construct for undeclared side effects (unsafePerformIO).

link|flag
vote up 11 vote down

F# is part of the ML family of languages and is very close to OCaml. You may want to read this discussion on the differences between Haskell and OCaml.

link|flag
vote up 1 vote down

Note: Singularity is written in Sing#, which is based off Spec#, which is based on C#.

F# real world: used in X-Box Live ranking system.

link|flag
vote up 1 vote down

Well, for one I'd say a main advantage is that F# compiles against the .NET platform which makes it easy to deploy on windows. I've seen examples which explained using F# combined with ASP.NET to build web applications ;-)

On the other hand, Haskell has been around for waaaaay longer, so I think the group of people who are real experts on that language is a lot bigger.

For F# I've only seen one real implementation so far, which is the Singularity proof of concept OS. I've seen more real world implementations of Haskell.

link|flag
F# has already had several major success stories (Halo 3, AdCenter, F# for Visualization) that dwarf the nearest thing Haskell has to a success story (Darcs). – Jon Harrop Nov 6 '08 at 2:20
vote up 2 vote down

You might want to also consider erlang if you are really interested in functional programming...

link|flag

Your Answer

Get an OpenID
or

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