vote up 9 vote down star
12

I am wondering if I should continue to learn OCaml or switch to F# or Haskell.

Here are the criteria I am most interested in:

  • Longevity

    • Which language will last longer? I don't want to learn something that might be abandoned in a couple years by users and developers.
    • Will Inria, Microsoft, University of Glasgow continue to support their respective compilers for the long run?
  • Practicality

    • Articles like this make me afraid to use Haskell. A hash table is the best structure for fast retrieval. Haskell proponents in there suggest using Data.Map which is a binary tree.
    • I don't like being tied to a bulky .NET framework unless the benefits are large.
    • I want to be able to develop more than just parsers and math programs.
  • Well Designed

    • I like my languages to be consistent.

Please support your opinion with logical arguments and citations from articles. Thank you.

flag

60% accept rate
That's a bizarre article about Haskell. A language where you can't make a fast hash table? I'm not some performance stickler, but a hash table is kind of a first class data structure. – mquander May 5 at 0:20
@mquander yep, I use hash tables all the time in other languages. Also note that the article is only from April and GHC is pretty old. – Unknown May 5 at 0:25
4  
Use Data.IntMap, or one of the hashtable libraries on Hackage, if you have a particular problem that requirees "hashing". And be very wary of anything Jon Harrop says about languages other than those he writes books about (Google will turn up some horror stories...) – dons May 5 at 7:06
@dons I know Jon Harrop makes money off those books, but they seem to be only about Ocaml and F#, which are pretty similar. – Unknown May 5 at 7:19
2  
You can easily verify my results for yourself because I gave the code in full. Also, note that Don's book Real World Haskell makes assertions about hash tables that are factually incorrect, most likely because they were drawn based upon benchmark results from Haskell alone. In reality, hash tables are a great data structure (of course). – Jon Harrop Jul 9 at 3:18

6 Answers

vote up 28 vote down check

Longevity

  • Haskell is de facto the dominant language of functional-programming research. Haskell 98 will last for many more years in stable form, and something called Haskell may last 10 to 30 years---although the language will continue to evolve. The community has a major investment in Haskell and even if the main GHC developers are hit by a bus tomorrow (the famous "bus error in Cambridge" problem), there are plenty of others who can step up to the plate. There are also other, less elaborate compilers.

  • Caml is controlled by a small group at INRIA, the French national laboratory. They also have a significant investment, Others are also invested in Caml, and the code is open source, and the compiler is not too complicated, so that too will be maintained for a long time. I predict Caml will be much more stable than Haskell, as the INRIA folks appear no longer to be using it as a vehicle for exploring new language ideas (or at least they are doing so at a smaller rate than in the past).

  • Who knows what a company will do? If F# is successful, Microsoft could support it for 20 years. If it is not successful, they could pull the plug in 2012. I can't guess and won't try.

Practicality

A hash table is the best structure for fast retrieval. Haskell proponents in there suggest using Data.Map which is a binary tree.

It depends on what you are searching. When your keys are strings, ternary search trees are often faster than hash tables. When your keys are integers, Okasaki and Gill's binary Patricia trees are competitive with hashing. If you really want to, you can build a hash table in Haskell using the IO monad, but it's rare to need to.

I think there will always be a performance penalty for lazy evaluation. But "practical" is not the same as "as fast as possible". The following are true about performance:

  • It is easiest to predict the time and space behavior of a Caml program.

  • F# is in the middle (who really knows what .NET and the JIT will do?).

  • It is hardest to predict the time and space behavior of Haskell programs.

  • Haskell has the best profiling tools, and in the long run, this is what yields the best performance.

I want to be able to develop more than just parsers and math programs.

For an idea of the range of what's possible in Haskell, check out the xmonad window manager and the vast array ofpackages at hackage.haskell.org.

I don't like being tied to a bulky .NET framework unless the benefits are large.

I can't comment:

Well Designed

I like my languages to be consistent.

Some points on which to evaluate consistency:

  • Haskell's concrete syntax is extremely well designed; I'm continually impressed at the good job done by the Haskell committee. OCaml syntax is OK but suffers by comparison. F# started from Caml core syntax and has many similarities.

  • Haskell and OCaml both have very consistent stories about operator overloading. Haskell has a consistent and powerful mechanism you can extend yourself. OCaml has no overloading of any kind.

  • OCaml has the simplest type system, especially if you don't write objects and functors (which many Caml programmers don't, although it seems crazy to me not to write functors if you're writing ML). Haskell's type system is ambitious and powerful, but it is continually being improved, which means there is some inconsistency as a result of history. F# essentially uses the .NET type system, plus ML-like Hindley-Milner polymorphism (See question "What is Hindley-Milner".)

  • OCaml is not quite consistent on whether it thinks variants should be statically typed or dynamically typed, so it provides both ("algebraic data types" and "polymorphic variants"). The resulting language has a lot of expressive power, which is great for experts, but which construct to use is not always obvious to the amateur.

  • OCaml's order of evaluation is officially undefined, which is a poor design choice in a language with side effects. Worse, the implementations are inconsistent: the bytecoded virtual machine uses one order and the native-code compiler uses the other.

link|flag
1  
Some good points but: your advice about the performance of trees vs hash tables is misleading. Your assertion that Haskell has better profiling support than .NET is absurd. Your assertion that many OCaml programmers ignore objects and functors is wrong (you cannot even use Set and Map otherwise and several of OCaml's most popular libraries rely heavily upon objects) and you've neglected polymorphic variants, which are one of OCaml's greatest advantages over other statically-typed FPLs. Your assertion about OCaml's evaluation order being "inconsistent" is wrong: it has always been undefined. – Jon Harrop May 6 at 0:05
1  
For example, (in OCaml) adding 1,000,000 ints to a patricia tree is 6x slower than a hash table if you start from empty and 18x slower than a hash table if you reserve space for the number of elements before adding them. – Jon Harrop May 6 at 1:01
2  
I've started learning a little more about Haskell, and found out that the syntax is so_much_better than OCaml. But I still don't like lazy evaulation by default, and the hash table stuff still bothers me. So as a result, I am still torn between these languages. – Unknown May 7 at 2:00
1  
@Jon Harrop (profiling support in GHC and .NET): what does .NET offer that is as good as GHC's cost centers and GHC's heap profiler? – Norman Ramsey May 7 at 2:54
1  
@Unknown: It took me about 5 years to stop worrying and learn to like lazy evlauation by default, and it wasn't until I got a few big wins in large programs where I hadn't planned in advance for structures to be lazy. So I sympathize. For the hash table I think you'll be hard pressed to find an app where it matters. – Norman Ramsey May 7 at 3:06
show 7 more comments
vote up 10 vote down

Longevity

No one can predict the future, but

  • OCaml and Haskell have been surving well for a number of years, which bodes well for their future
  • when F# ships with VS2010, MS will have legal obligations to support it for at least 5 years

Practicality

Perf: I don't have enough first-hand experience with Haskell, but based on second-hand and third-hand info, I think OCaml or F# are more pragmatic, in the sense that I think it is unlikely you'll be able to get the same run-time perf in Haskell that you do in OCaml of F#.

Libraries: Easy access to the .Net Framework is a huge benefit of F#. You can view it as being "tied to this bulky thing" if you like, but don't forget that "you have access to a huge bulky library of often incredibly useful stuff". The 'connectivity' to .Net is one of the big selling points for F#. F# is younger and so has fewer third-party libraries, but there is already e.g. FsCheck, FParsec, Fake, and a bunch of others, in addition to the libraries "in the box" on .Net.

Tooling: I don't have enough personal experience to compare, but I think the VS integration with F# is superior to anything you'll find for OCaml/Haskell today (and F# will continue to improve a bit here over the next year).

Change: F# is still changing as it approaches its first supported release in VS2010, so there are some breaking changes to language/library you may have to endure in the near future.

Well Designed

Haskell is definitely beautiful and consistent. I don't know enough OCaml but my hunch is it is similarly attractive. I think that F# is 'bigger' than either of those, which means more dusty corners and inconsistencies (largely as a result of mediating the impedence mismatch between FP and .Net), but overall F# still feels 'clean' to me, and the inconsistencies that do exist are at least well-reasoned/intentioned.

Overall

In my opinion you will be in 'good shape' knowing any of these three languages well. If you know a big long-term project you want to use it for, one may stand out, but I think many of the skills will be transferable (more easily between F# and OCaml than to/from Haskell, but also more easily among any of these three than with, say, Java).

link|flag
Well the thing about being tied to the big bulky .NET, is that it forces you to bundle with it on purpose, instead of only selectively including the libraries you use. – Unknown May 5 at 8:17
vote up 8 vote down

This wasn't one of your criteria but have you considered job availability? Haskell currently list 144 jobs on indeed, Ocaml list 12 and C# list 26,000. These numbers are not perfect but I bet you that once F# ships it won't be long before it blows past Haskell and Ocaml in the number of job listings.

So far every programming language included in Visual Studios has thousands of job listings for it. Seems to me that if you want the best chance to use a functional programming language as your day job then F# will soon be it.

link|flag
From a practical perspective, this about nails it. – Darren Oster May 5 at 23:56
I'd recommend looking at the jobs themselves. The last time I checked, many non-Haskell jobs were using Haskell as a buzzword because of the current fad. I personally prefer to read about the success stories built upon those languages. Haskell is way way behind in that respect, of course. – Jon Harrop May 6 at 0:18
1  
I'm surprised I have 2 down votes and 3 up votes for this. I thought the point of down voting was to remove irrelevant or wrong information not to disagree. – Erik Schulz May 6 at 13:53
The downvotes are coming from the "Microsoft is an evil empire" crowd. – Robert Harvey Jul 8 at 4:19
According to itjobswatch.co.uk, F# already overtook Haskell and is growing much faster even though it won't be properly released until 22nd March 2010! – Jon Harrop Dec 11 at 22:44
vote up 8 vote down

Your question was "should you learn F# or Haskell if you know OCaml" and I believe the answer is certainly yes, you should learn all three languages because each one has something to offer.

Longevity

There is no way any of OCaml, F# or Haskell will be abandoned in a couple of years.

OCaml has huge support from industry and several major projects are underway, e.g. batteries included and the parallel GC. Even if INRIA did drop it (which I do not believe they will), there are many companies relying upon it (such as Jane St., LexiFi, MLState, Plectix and Flying Frog) who would pick up development. I think it is much more likely that OCaml's industrial users will continue to collaborate because this has been so successful in the past.

Microsoft are committed to releasing F# in VS 2010 (I spoke to them about this only last week). Then it will be dropped on 10,000,000 developers, 1,000,000 of whom are rich enough to have paid for Visual Studio (!).

Haskell has industrial backers like Galois who would probably continue to support GHC long term.

Practicality

I wrote the article you cited about hash tables. They are a good data structure. Other people have referred to purely functional alternatives like ternary trees and Patricia trees but these are usually ~10x slower than hash tables in practice. The reason is simply that the trees incur more pointer indirections and that is already very inefficient today and is getting worse as the memory gap widens.

However, this is not a problem if you never need efficiency. Moreover, you can patch Haskell yourself because it is open source.

My personal preference is for optional laziness and optional purity because both are generally counter productive in the real world (e.g. laziness makes performance and memory consumption wildly unpredictable and purity severely degrades average-case performance and makes interoperability a nightmare). I am one of the only people earning a living from functional programming through my own company. Suffice to say, if I thought Haskell were viable I would have diversified into it years ago but I keep choosing not to because I do not believe it is commercially viable.

You said "I don't like being tied to a bulky .NET framework unless the benefits are large". Although .NET is theoretically general purpose its use is actually focused on very specific business domains in practice (unlike the JVM) and, consequently, the quantity and quality of libraries outside those domains (e.g. in my domain of scientific computing) is generally awful. That is not the benefit of .NET. The real benefit of .NET is that you can sell the libraries that you write in F#. Nobody has ever succeeded selling libraries to OCaml and Haskell programmers (and I am one of the few people to have tried) but F# libraries already sell in significant quantities and that will only get better when F# has its first full release next year. So the bulky .NET framework is well worth it if you want to earn a living by writing software.

Well designed

These languages are all well designed but for different purposes. In particular, F# was designed to address all of the most serious practical problems with OCaml and Haskell such as poor interoperability, lack of concurrent garbage collection and mature modern libraries like WPF.

link|flag
Hi Jon thanks for the input. However, realistically, I won't be able to learn all 3 in a reasonable amount of time. I stumbled upon some of your posts on Reddit, Ltu and Lisp, and while you do seem a like a salesman for F# and OCaml, I can't help but agree with your conclusions about the hash table. It was also interesting how everyone else dismissed it and suggested tries. To try to get more input on ternary tries vs hash tables, I created this question stackoverflow.com/questions/823744/… – Unknown May 6 at 2:52
Well, I came from OCaml and started learning both F# and Haskell at the same time. I quickly ditched Haskell not just because the language and its implementation are riddled with bugs and serious practical limitations but also because I did not like the community. They refuse to accept responsibility for problems like the hash table thing and the mailing list is full of nonsense like Don Steward trying to pretend that IRC chat is more important than generating real software, and someone else telling me that something I had done under contract for Wolfram Research was impossible (!). – Jon Harrop May 6 at 23:46
1  
Voting up because I don't believe this answer deserves (uncommented) downvotes – Benjol May 11 at 11:08
vote up 4 vote down

F# and OCaml are very similar in syntax, though, obviously, F# is better with .NET.

Which one you learn or use should be dependent on which platform you are aiming for.

In VS2010 F# is going to be included, and since it compiles to .NET bytecode, it can be used on a windows OS that supports the .NET version you used for it. This will give you a large area, but there are limits, currently with F# that OCaml don't have, in that F# appears not to take advantage of all the processors on a machine, but, that is probably due to F# still being developed, and this may be a feature that isn't as important yet.

There are other functional languages, such as Erlang that you could look at, but, basically, if you are strong in one FP language then you should be able to pick up another fairly quickly, so, just pick one that you like and try to develop interesting and challenging applications in it.

Eventually language writers will find a way to get OO languages to work well with multi-cores and FP may fall to the wayside again, but, that doesn't appear to be happening anytime soon.

link|flag
1  
F# has asynchronous workflows, which is admittedly pretty nice for doing parallelisation. Nonetheless, with Parallel Extensions appearing in the .NET Framework 4.0, I would argue that realtively easy OOP on multiple cores is just around the corner. – Noldorin May 5 at 0:46
Not sure what you mean by F# not using all the processors on a machine. I have no trouble getting F# code to load to 100%. Depends on what I'm doing. – sblom May 5 at 1:03
There was an article I read a few months ago where the author mentioned that unlike OCaml, F# didn't properly use all eight of his processors. My laptop doesn't have that, so I can't verify, but I expect it was due to the version that was being used, and I figured it would be fixed when it was a high enough priority. – James Black May 5 at 1:46
2  
the Haskell people have just released some stunning results on parallel performance with 8 cores. See 'Runtime Support for Multicore Haskell' at haskell.org/~simonmar/bib/bib.html – Norman Ramsey May 5 at 4:29
@sblom: I think James is referring to compilation. OCaml compiles in parallel but F# does not. – Jon Harrop Jul 9 at 3:33
show 1 more comment
vote up 4 vote down

There's no simple answer to that question, but here are some things to consider:

Haskell and OCaml are both mature languages with strong implementations. Actually, there are multiple good implementations of Haskell, but I don't think that's a major point in its favor for your purpose.

F# is much younger, and who can predict where Microsoft will decide to take it? How you feel about that depends more on how you feel about Microsoft than anything anyone can tell you about programming languages.

OCaml (or ML in general), is a good practical language choice that supports doing cool functional stuff without forcing you to work in a way that might be uncomfortable. You get the full benefit of things like algebraic data types, pattern matching, type inference, and everybody else's favorite stuff. Oh, and objects.

Haskell gives you all that (except objects, pretty much), but also more or less forces you to rethink everything you think you know about programming. This might be a very good thing, if you're looking to learn something new, but it might be more than you want to bite off. I say this as someone who is only maybe halfway along the path to being a productive, happy Haskell programmer.

Both OCaml and Haskell are being used to write lots of different kinds of programs, not just compilers and AI or whatever. Google is your friend.

One last note: OCaml gives you hashtable, but it's hardly sensible to use it in code if you really want to embrace functional programming. Persistent trees (like Data.Map) are really the right solution for Haskell, and have lots of nice properties, which is one of the cool things to learn about when you pick up Haskell.

link|flag
But the problem is that I would rather have O(1) access. O(log n) access for a large set is ridiculous. It doesn't matter if you have a persistent tree, because you can sure have a persistent hash table. – Unknown May 5 at 1:12
If you just want O(1) because it sounds good, then as another poster said feel free to use a hashtable in Haskell, even though it's not a great fit. My point was that a language with lazy evaluation and no side-effects really begs for persistent data structures (en.wikipedia.org/wiki/Persistent_data_structure/…). This is a powerful idea and worth some study and reflection. In my opinion this is more important than O(1) vs. O(log n), and it's certainly more important than somebody's random timing exercise. Say it with me: "micro-benchmarks are evil!" – Moss Prescott May 5 at 5:06
@Moss, unfortunately, I have run into plenty of situations where the difference between O(k) and O(log n) where k is from 1-20 and n is in the hundreds of thousands. I quite seriously doubt that "persistent data structure" is a legitimate excuse for not having a decent hash table. If you can have persistent trees, why not have persistent hash tables? – Unknown May 5 at 7:14
Try using IntMap (or the hashtable libraries on hackage -- there's a judy arrays binding), and report problems if you encounter them. Probably you won't have issues, is my guess. – dons May 5 at 7:18
I guess the short answer is that the conventional wisdom says you can't (easily) implement a persistent hashtable with good performance, but now I see that not everyone agrees on that point, so here are a couple of links for anyone who's reading: en.wikipedia.org/wiki/Purely_functional (this includes a link to Chris Okasaki's thesis -- everyone out there: stop reading this thread and go read the thesis or the book version right now!) A posting by LtU regular cdiggins taking the contrarian position: artima.com/forums/… Also, log 100k = 17. – Moss Prescott May 5 at 23:34
show 1 more comment

Your Answer

Get an OpenID
or

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