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?
|
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?
|
||||
|
|
|
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 ;) |
||
|
|
|
|
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:
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. |
|||
|
|
|
You might find this blog post by Neil Mitchell informative: The comments are also illuminating. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
I'd say F#, as you can access the entire .Net framework. However, that's more of a library thing. |
||
|
|
|
|
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. |
||||||||
|