Haskell vs. F# - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T23:28:01Zhttp://stackoverflow.com/feeds/question/44961http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/44961/haskell-vs-f16Haskell vs. F#kronoz2008-09-04T23:24:51Z2009-05-16T03:38:39Z
<p>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?</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/44964#449642Answer by Jason Bunting for Haskell vs. F#Jason Bunting2008-09-04T23:26:36Z2008-09-04T23:26:36Z<p>You might want to also consider <a href="http://www.erlang.org/" rel="nofollow"><strong>erlang</strong></a> if you are really interested in functional programming...</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/44969#449691Answer by Erik van Brakel for Haskell vs. F#Erik van Brakel2008-09-04T23:28:05Z2008-09-04T23:28:05Z<p>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 ;-)</p>
<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/44995#4499525Answer by Xian for Haskell vs. F#Xian2008-09-04T23:54:34Z2008-09-04T23:54:34Z<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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;</p>
<p>if(IsSomethingTrue() && AnotherThingTrue())
{
do something;
}</p>
<p>If IsSomethingTrue() is false then AnotherThingTrue() method is never evaluated, </p>
<p>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.</p>
<p>Listen to the latest Software Engineering radio with Simon Peyton Jones for more info on Haskell. <a href="http://www.se-radio.net/" rel="nofollow">http://www.se-radio.net/</a></p>
<p>good luck</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/45029#450291Answer by Brian Leahy for Haskell vs. F#Brian Leahy2008-09-05T00:22:20Z2008-09-05T00:22:20Z<p>Note: Singularity is written in Sing#, which is based off Spec#, which is based on C#.</p>
<p>F# real world: used in X-Box Live ranking system.</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/45031#4503111Answer by Mark Cidade for Haskell vs. F#Mark Cidade2008-09-05T00:22:54Z2008-09-05T00:22:54Z<p>F# is part of the ML family of languages and is very close to OCaml. You may want to read this discussion on the <a href="http://www.oreillynet.com/mac/blog/2006/03/haskell_vs_ocamlwhich_do_you_p.html" rel="nofollow">differences between Haskell and OCaml</a>.</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/63212#632120Answer by sgillespie for Haskell vs. F#sgillespie2008-09-15T14:09:04Z2008-09-15T14:09:04Z<p>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).</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/63988#639889Answer by Nathan Sanders for Haskell vs. F#Nathan Sanders2008-09-15T15:33:20Z2008-09-15T15:33:20Z<p>Big differences:</p>
<ul>
<li>Platform</li>
<li>Object orientation</li>
<li>Laziness</li>
</ul>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>Minor differences:</p>
<ul>
<li>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.</li>
<li>Tools : F# has excellent Visual Studio integration, if you like that sort of thing. Haskell also has an <a href="http://www.haskell.org/visualhaskell/" rel="nofollow">older Visual Studio plugin</a>, but I don't think it ever got out of beta. Haskell has a simple emacs mode, and you can <a href="http://cs.hubfs.net/forums/thread/298.aspx" rel="nofollow">probably use OCaml's tuareg-mode</a> to edit F#. </li>
<li>Side effects : Both languages make it pretty obvious when <em>you</em> 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.</li>
</ul>
http://stackoverflow.com/questions/44961/haskell-vs-f/737546#7375460Answer by Jon Harrop for Haskell vs. F#Jon Harrop2009-04-10T12:58:00Z2009-04-10T12:58:00Z<p>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.</p>
<p>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:</p>
<ul>
<li><p>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.</p></li>
<li><p>F# inherits many great libraries from
.NET. Haskell has poor libraries even
among research languages.</p></li>
<li><p>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 (!).</p></li>
<li><p>F# books are of much higher quality and are more pragmatic than Haskell books.</p></li>
<li><p>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.</p></li>
<li><p>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.</p></li>
</ul>
<p>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.</p>
http://stackoverflow.com/questions/44961/haskell-vs-f/871635#8716352Answer by Curt Sampson for Haskell vs. F#Curt Sampson2009-05-16T03:38:39Z2009-05-16T03:38:39Z<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>A couple of other unrelated points:</p>
<p>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.</p>
<p>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.)</p>
<p>cjs@cynic.net</p>