vote up 7 vote down star
6

NOTE : i don't agree btw this is a double question. Please read carefully. I want to know more than just production/studying. Maybe I should lay another accent then and rephrase it? One of my questions is :

  • for GUI
  • for diff. OS ? Windows?
  • for anything you can come up with: a general positioning of functional languages thus.

I know this is probably a subjective question, still, I'm sure there's a lot that could be said. I'm learning Haskell this moment, and, have to admit, I'm struck by its sheer beauty.

Still, Haskell is only one language, and I have no clue how one functional language differs from te next one. I've came across lots of imperative languages (OO or not) in my life, and I think, as much as the next guy, the imperative languages, COBOL and C# are hardly comparable. If there's that much difference in functional languages, is the choosing of one very relevant to me.

Of course, which language to use is very dependant of the context, I can imagine that the answer on 'Which functional language to use for production code' (any?) as not the same as 'Which language to use to study the functional language principles', so I very much would like some positioning of the different languages. Like which should I use when I need a GUI? Which one have compilers for windows to? Is Haskell 'the' functional language, and so forth...

flag

65% accept rate
Make this community wiki, please. – lothar Apr 13 at 17:12
I'll have to check what that is, though your info would be welcome (short on time, right now) – Peter Apr 13 at 18:51
I have checked it and I'm still not sure : why would you like me to make this a community wiki? – Peter Apr 13 at 20:04
@Peter - generally questions tagged as "subjective" get better reception if they are also CW. Since there's no real right or wrong answer, it can look like point/rep "whoring" for the asker and the answerers. – Rex M Apr 13 at 22:32
1  
said : give me some time and i figure it out. But the first impression is not too good : "This category is in my opinion, and in my personal experience, a Bad Idea." is the highest rated answer concerning the matter, and "Neither community, nor wikki" is read on several places. To be continued... – Peter Apr 13 at 23:07
show 4 more comments

9 Answers

vote up 11 vote down check

There are a few different axes here you're considering, so here's some scaffolding I hope others may fill out:

Statically-typed (ST) vs. Dynamically-typed (DT)?

Pure (PURE) vs. side-effects (MUT)

Platform/runtime: .Net (NET) vs. JVM (JVM) vs. other?

Intended more for academic (ACAD) or production (PROD)? (This is quite subjective, many "academic" languages have seen commercial and production use, and vice versa)


(please fill in the blanks!)

Language         type      plat        use      gui framework/ lib
----------------------------------------------------------------
Haskell          ST,PURE   other       ACAD     see (*)
Clojure          DT,MUT    JVM         PROD
SML              ST,MUT    other       ACAD
OCaml            ST,MUT    other       PROD     Tk and GTK
Scala            ST,MUT    JVM         PROD     
F#               ST,MUT    NET         PROD     wpf, winforms
Common Lisp      DT,MUT    other       PROD
Erlang           DT,MUT    other       PROD
<add others>

(*) http://www.haskell.org/haskellwiki/Applications_and_libraries/GUI_libraries

link|flag
Very interesting, tx! I thought PURE was a characteristic of functionalLang. but I was clearly mistaking! – Peter Apr 13 at 18:59
@Peter - Any language with a print() statement cannot be purely functional. In a purely functional language, all functions take arguments and return values - they never have side effects (like printing text to the screen). For example, Lisp's (format t "Hello, world!~%") breaks that rule. – Chris Lutz Apr 13 at 22:33
Yes, but then again, Haskel is not puter either, as stated above – Peter Apr 13 at 23:09
Another axis to consider is lazy vs. strict. – Ingo Apr 14 at 8:39
2  
@Peter - Haskell's print() doesn't print, it returns an IO action which you must sequence through main in order to run. Haskell is effectively pure (minus unsafePerformIO and Debug.Trace loopholes). – ephemient Apr 14 at 22:02
show 6 more comments
vote up 2 vote down

I'll just plug Erlang as a DT/MUT/Other/PROD language since no one else has.

link|flag
vote up 3 vote down

I'd agree with those suggesting you take a look at F# It allows you to mix OOP and functional programming style in a (almost - downcasts to interface, I'm talking to you!) seamless fashion, is pretty fast, includes full interoperability with .NET, is statically typed (compile-time type resolution is great and will save you some headaches associated with dynamic languages...besides you get intellisense!) and last but not least it's becoming supported out of the box in VS2010. The beauty of F# is that it doesn't force you down a path, but lets you do efficiently and elegantly what you want, the way you want to do it.

link|flag
vote up 4 vote down

Haskell will certainly teach you functional programming, and it is cross platform, has GUIs, is used commercially, and gives you good options for multicore programming. It wouldn't be the wrong choice.

It depends on what exactly you're seeking to learn.

link|flag
vote up 4 vote down

Standard ML and LISP/Scheme are two obvious candidates.

ML is a remarkably clean and well-designed language, very nice to work with, and it differs from Haskell in two main ways: It doesn't have lazy evaluation, and it allows side effects in some cases. F# is pretty much a .NET port of ML.

At my university, first-year students are taught it as an intro to programming.

Lisp or one of its variants like Scheme are always an eye-opener too, although more for its powerful (lack of) syntax than for being functional.

Both are definitely worth exploring if you want to see what diversity exists within the field of functional languages.

For practical use, F# is probably your best bet, given how well it integrates with the .NET class library, which gives it a lot of functionality for free.

link|flag
"Integrates with .NET class libary, which gives it a lot of functionality for free"... but it is mutable functionality. And really, how 'well' does it integrate in a large project? I have my doubts. Any citation reports you can give? – nlucaroni Apr 13 at 17:18
No, I agree with you, from a pure functional perspective, I'd prefer another language too. But he did ask about making GUI applications other "practical" uses. And then simply having access to .NET would be a huge advantage, even if it is mutable and non-functional. – jalf Apr 13 at 18:54
I agree with jalf's original statement; why a lot of that functionality rests on mutability, can you argue against its productivity? F# isn't a "funtional" language - it's multi-paradigm. You could, for example, use functional as much as you want for your algorithms, and then use .NET to present it. – Anthony Kanago Apr 13 at 23:43
@nlucaroni: look at our products for examples of F# heavily integrated with .NET. Mutability is irrelevant. – Jon Harrop May 12 at 19:59
How does F# prove that mutability is irrelevant? – jalf May 12 at 20:36
vote up 3 vote down

Take a look at F#. Full support within the next release of Visual Studio and of course you get access to the .NET framework.

link|flag
vote up 3 vote down

I would recommend learning F# since it is not only functional, but it also takes advantage of the richness of the .NET framework to allow to use objects where it is applicable.

Scala and Clojure are other functional languages that can also use Objects where applicable.

link|flag
vote up 0 vote down

I think this may be a duplicate of e.g.

http://stackoverflow.com/questions/171719/functional-languages-when-to-use

http://stackoverflow.com/questions/102911/whats-a-good-functional-language-to-learn

link|flag
similar indeed, but still differint imo. (One is about what to learn, the other for production, overlapping indeed, and some interesting answers for me too,tx. My question is as general as can be : a general positioning) – Peter Apr 13 at 16:14
vote up 5 vote down

Haskell is definitelly one of the choices. You can also try at clojure. It's a lisp, functional, has access to a large amount of java libraries, cross platform, can use swing or swt or qt for gui, ...

link|flag

Your Answer

Get an OpenID
or

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