vote up 4 vote down star
1

I'm currently learning Haskell, Which language (F# or Haskell) do you prefer for programming general purpose applications?

Which do you think is the stronger language?

flag

1  
Why did you leave OCaml out? – Ycros Sep 27 '08 at 5:54

7 Answers

vote up 12 vote down check

I'd go for Haskell. HackageDB is a great collection of libraries that are written specifically for the language. In the case of F# you'd have to use mostly libraries that are not written with a functional language in mind so they will not be as 'elegant' to use. But, of course it depends largely on how much functional programming you want to do and constraints of the project you want to use it for. Even 'general purpose' does not mean it should be used in all cases ;)

link|flag
vote up 9 vote down

I prefer Haskell.

Jon Harrop's claim that Haskell has poor tools caused me to think a bit, since I quite disagree with this. I think that the issue here is partly one of development style. Let's compare a few tool-related characteristics of F# and GHC:

  1. F# has extensive visual tools and GHC has none. For me, the lack of visual tools is irrelevant: I work with vi, a Unix command line, and a heavily custom build system. The lack of support for my style of development in F# would be very trying for me. On the other hand, if you prefer working under a Visual-Studio-type environment, you'd have quite the reverse opinion.

  2. F# and/or .NET I understand has a very good debugger. GHC has only a limited debugger that runs in the interpreter. I've not used a debugger in years (much of this due to using test-driven development) and when you work mostly with pure functions, as in Haskell, a debugger is much less necessary. So for me, the lack of this tool is fairly irrelevant.

  3. Libraries. This depends mostly on what libraries you need, doesn't it? Lots of good ones doesn't help if the one you need isn't there, and having lots of poorly-designed libraries may not be so helpful. Haskell certainly has fewer libraries than .NET, but it does have a reasonable selection, and the quality of the API design in many of them is very, very high.

I don't know what F#'s interface into native code libraries is like, but GHC is great for this, due to the fantastic FFI. I wrote a Windows DDE server entirely in Haskell (yes—not a line of C, not even to deal with callbacks from Windows C libraries) and it took considerably less time and was considerably simpler than doing the same thing in C or C++. If you need native code interfaces, Haskell is certainly the better choice.

The "unpredictability" of memory usage and performance is a good point. Haskell seems to me actually reasonably predictable if you know what you're doing, but you won't know what you're doing when you start out, and you'll have a lot to learn. F# is much more similar to other .NET languages.

Overall, this question probably comes down more to the platform than the language: the huge difference between the "Unixy world" of GHC generating native code and the "Windowsy world" of F# running on .NET is not a language issue.

link|flag
All fair points. I think Windows Presentation Foundation is an obvious counter example in the context of libraries though: it is far better designed and more powerful than anything available from Haskell (e.g. Qt). I would also advise technical users to seriously consider switching platforms just to use F#. I prefer Linux to Windows but .NET is just so far ahead of anything available on Linux or Mac OS X now... – Jon Harrop Jul 31 at 16:08
vote up 4 vote down

You might find this blog post by Neil Mitchell informative:

F# From a Haskell Perspective

The comments are also illuminating.

link|flag
Neil begins by stating that he knows very little about ML and then draws several flawed comparisons between F# and ML, concluding that F# inherits its flaws from ML. That is just worthless nonsense. If you want to know about ML, ask someone who knows ML (i.e. not Neil). – Jon Harrop Jul 31 at 16:00
vote up -2 vote down

The development of general purpose applications requires solid tools, reliable and extensive libraries and predictability.

Haskell has poor tools, few well-tested libraries, no commercial libraries and unpredictable memory consumption and performance. In contrast, F# already has good tools that are improving very quickly thanks to Microsoft's productization of F#, extensive and reliable libraries inherited from .NET as well as free and commercial third-party F#-specific libraries and has entirely predictable performance and memory consumption.

Specifically, Haskell has no serious backers and, consequently, the tools and libraries available for Haskell are just byproducts of research and, unsurprisingly, are not industrial strength. Consequently, Haskell has virtually no users outside academia. In fact, only 27kLOC of open source Haskell code has ever had a significant number of users to test it because all of the open source Haskell program written over the past decade have flopped and failed to garner a significant number of users. So Haskell is an interesting toy but a complete wild card if you're doing serious development.

So I would personally choose F# over Haskell every day of the week and twice on Sundays. If you're not using Windows then I would recommend OCaml instead because it also blows Haskell's socks off.

link|flag
vote up 2 vote down

I'd say it depends on why you are learning it. If you are doing it for the experience of a pure functional language, go for Haskell. But if you are definitely going to use the language for more than that, F# is might be the better choice.

link|flag
vote up 6 vote down

I'd say F#, as you can access the entire .Net framework. However, that's more of a library thing.

link|flag
vote up 7 vote down

It depends what you want to do:

Haskell is the more purely functional language of the two.

F# is more of a hybrid language, and not purely functional, but has a great set of base class libraries that you can use to do modern things easily on Windows or Mono.

link|flag
F# also works on Mono. – TraumaPony Sep 27 '08 at 5:25
But thats with a different platform, he doesnt deserve a downvote. – Rayne Sep 27 '08 at 5:29
F# is a language for the CLI; therefore, it's the same platform. – TraumaPony Sep 27 '08 at 5:30
thanks guys, fixed description. – Brian R. Bondy Nov 3 '08 at 13:09

Your Answer

Get an OpenID
or

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