Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a very experienced Object Oriented developer. Which of the Functional Programming languages would be the best one for getting my feet wet? Keeping in mind:

  • IDE
  • Compiler Maturity
  • Debugging Tools

Which Functional Programming language would you recommend?

share|improve this question

closed as not constructive by Dominic Kexel, Charles Menguy, Klaim, Lars Kotthoff, Bertrand Marron Jan 4 at 19:27

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

19 Answers

up vote 37 down vote accepted

I would take a very long look at F# for this. It's got Visual Studio as the IDE which is fantastic and a pile of resources.

A few of our guys have started using it and exploring the power of the language.

share|improve this answer
1  
F# is coming out officially with VS 2010, but it's been shipping regularly for awhile and I've used it for a pretty big project. – Drew Hoskins May 29 '09 at 17:57
1  
Yup. Good point. Being the it's an MS product in in the Visual Studio family (directly soon) it's a great bet that it's going to get attention in the same way C# has. – Mat Nadrofsky May 29 '09 at 18:04
2  
Why? There's a descent chance that C# would continue to get all the attention. – alamar May 29 '09 at 18:09
5  
I'm not saying it would detract at all from C# or even be comparable. I'm speaking to the active development of the language. If MS is putting the product into the Visual Studio Family for 2010, there's a good bet they're going to be investing in it's growth. – Mat Nadrofsky May 29 '09 at 18:13
2  
I'd be very wary about using a proprietary language, you never know when they might pull the plug... – Robert Sep 13 '09 at 17:48
show 4 more comments

Seems to me that if you're an experienced OO programmer, you should learn a functional programming language that does not let you keep on programming in the OO style.

My recommendation is Haskell (although some OO is possible in it too, it's not the typical idiom.) Haskell has mature compilers (ghc) and good testing tools (Quickcheck, etc).

share|improve this answer
2  
Plus Haskell's method of doing static typing is really, really cool. – Clint Miller May 29 '09 at 22:50
Plus Haskell is a pure functional language (compared to F#, Ocaml, Scala, ...), so you get rid of side effects. Plus you get type classed and generalized algebraic data types. And the above mentioned type inference. Plus a IDE called leksah, etc. – mrsteve Jun 27 '11 at 5:36

Scala?

Good IDE support, Java class library and debugging tools. And it's OO/functional, not just functional. And it runs in the JVM.

http://www.scala-lang.org/

share|improve this answer
3  
Scala's IDE support is actually pretty horrible. I've tried the Eclipse and NetBeans plugins, and they were both really broken. It was like whoever wrote them got them to compile then shipped them without using them at all. Seriously, I couldn't even create a project in NetBeans without getting a weird error message. It's a great language, but I would recommend Emacs for anyone writing code in it. – Jay Conrod Jul 29 '09 at 0:25
1  
Fast forward to 2012, IntelliJ now supports Scala, and though I haven't tried it, I'm willing to blind bet that it is pretty solid based on JetBrain's reputation alone. On the other hand, being an F# / .NET developer with JRE experience, I have a really hard time stomaching Scala's lack of reified generics and tail recursion (and I'd be hard pressed to give up HM type inference as well!). – Stephen Swensen Feb 2 '12 at 0:04
The thing about Scala, not only is the language beautiful, but you just can't beat some of the libraries/tools that come with it, like Akka and SBT. With Akka you can easily write fast parallel code, while SBT gives you build and dependency management. Something that the .NET world tries to fill with NuGet, but has not reached Maven/SBT useability yet. – cessationoftime Jul 29 '12 at 16:29

Scheme, start by reading SICP. After that you can use any language you want.

share|improve this answer

Haskell is widely used as is Erlang. F# is up and coming, but much newer. And, of course, there are Lisp and Scheme.

share|improve this answer

I would look into Clojure, which has implementations for both the JVM and the CLR. While it may not be the easiest to grasp for an experienced object-oriented programmer, it does addresses the key concerns of OO: encapsulation, polymorphism, and inheritance. There is a good article by Stuart Halloway that explains this quite well (he calls it rifle-oriented programming).

Keep in mind that while Clojure is predominantly a functional programming language, it is much more (as Lisp dialects are a multi-paradigm programming language). Here is the description straight from the Clojure website:

Clojure is a dialect of Lisp, and shares with Lisp the code-as-data philosophy and a powerful macro system. Clojure is predominantly a functional programming language, and features a rich set of immutable, persistent data structures. When mutable state is needed, Clojure offers a software transactional memory system and reactive Agent system that ensure clean, correct, multithreaded designs.

Clojure is picking up steam as popular language these days (as can be seen by the number of questions on stackoverflow with the Clojure tag). One of the cool things about the language is that if you're a Java programmer or a .Net programmer, you can make use of the many mature libraries from these languages/frameworks, directly in your Clojure code (here are some basic examples). I think this is part of where the popularity has come from (this book has also helped it gain strides too). One final point about the language is that those who think Lisp dialects look like a three-headed mutant, due to the endless parentheses, will be happy to know that Clojure has replaced parentheses with other characters for certain data structures. Maps use { } and vectors use [ ]. This breaks up the sea-of-parentheses quite a bit.

To address some of your points:

IDE:

There is a good article that covers various IDE options (plugins for Vim, Emacs, Eclispse etc.). For the CLR implementation there is a Visual Studio plugin. Keep in mind that there is also various REPL (read-eval-print-loop) environments that can be used for quick prototyping of functions etc.. There is even one embedded in this webpage so you can try Clojure without downloading or installing anything! I believe the most popular all-in-one solution for Windows (at least at this point in time) is Clojure Box (don't quote me on that, but it is the one I've seen mentioned the most in my personal experience).

Compiler Maturity:

While the language has only been around for about 4 years, it is still has very active development. The last stable release (as of this post) is about 4 months old. So there still may be the odd breaking changes here and there. I would still consider the compiler to be mature at this stage though.

Debugging:

There are various ways to debug Clojure code, both in an IDE and in REPL environments. Here are a few places to get you started:

  • CDT (Clojure Debugging Toolkit)
  • Some interesting approaches found in this stackoverflow post.
  • The official Clojure getting started guide has a Debugging section (mentions using JSwat)

And to end this post, here is a decent quick tutorial on Clojure for non-Lisp programmers (I would assume the majority of object-oriented programmers fall into this category).

share|improve this answer

Javascript is very good for learning and using functional programming.

You implicitly use it when setting an onclick for an html element.

It's close enough to the C style syntax to not have a lot of extra confsion because of syntax.

It can be used in the browser and on the command line through Java.

For a good overview, watch the Crockford videos from YUI theater.

share|improve this answer
1  
@e-satis "F# is windows only" except when it's used on Linux shootout.alioth.debian.org/u32q/… – igouy May 29 '09 at 18:33
3  
I agree that most JS code is written imperatively. However, I believe that JS offers a very easy introduction to functional programming. As for browser only, JDK 1.6 actually contains Rhino which allows javascript to be used from the command line. It also allows the easy integration of Java objects into JavaScript. – Tom Hubbard May 29 '09 at 18:34
1  
Writing functions is part of being an OO programmer. As far as I can tell, that's completely different from functional programming. For example, how would you define a monad in Javascript? – Kieveli May 29 '09 at 19:00
1  
kieveli: monads don't need special syntax. the concept can be used in any programming language. I don't see JavaScript as being any more functional than it is prototypical OOP. Aside from first class functions, there is nothing inherently "functional" about it. It encourages an imperative style by not forcing implementations to optimize tail-calls. And, though not really against a "functional" style, it's scoping rules are odd to say the least. Because of this, lexical closures in the language must be taken with a grain of salt. – apgwoz May 29 '09 at 21:22
1  
@Kieveli Considering that JavaScript is based largely on Scheme and Self (en.wikipedia.org/wiki/Javascript), I'd say it's about as easy as it is in most other functional languages. – rtperson May 29 '09 at 21:30
show 4 more comments

I've worked with both Scheme and some SML-NJ (Standard ML / New Jersey) in the past.

But I would highly recommend picking up The Little Schemer or The Little MLer by Friedman and Felleisen. They start really basic and work up to lambdas and such, in a picture book kind of way.

Given the popularity of OCaml and F# (both in the ML family), The Little MLer might be more what you want.

If you go with Scheme though (and I love Scheme), the SICP is also a great book. I still have mine from college. Friedman, Felleisen, et. al. also have two other Scheme books in their series.

share|improve this answer
1  
I love dr scheme by felleisen...plt-scheme.org – LB . May 29 '09 at 19:12
Cool, I'd heard of it, but did not know that Felleisen was involved. – crashmstr May 29 '09 at 19:17
1  
+1 for Little Schemer – dss539 May 29 '09 at 19:47
I've got both the updated Little Schemer as well as my original copy of the "Trade Edition" of The Little Lisper that I've had for probably about 15 years. – crashmstr May 29 '09 at 20:06

Even if I'm going to be down-voted, I've to say OCaml...

IDE: emacs Compiler: pretty good Debugging tools: not so much

It has a kind of object-oriented flavor that would be good for the transition.

Otherwise go for F#.

There is also Nemerle: a mix of C# with functional programming (I don't what is the status of this project though).

share|improve this answer
1  
Upvoted, F# is pretty much based on OCaml yet this language gets ignored by most... I learned it at school and thought it was a good language, but I don't know how it would fare for a business app. – Meta-Knight May 29 '09 at 18:12

The Visual Studio support for F# is a very significant factor. Because F# is strongly typed intellisense picks up errors immediately, and the tool tips showing function types (eg. "int -> bool") are invaluable. Getting to grips with the functional type system is probably the biggest barrier you will face, so, if you've got Visual Studio, then this should be a major plus for F#. (Intellisense just for learning the syntax is also very helpful)

On the other hand, whenever I look for on-line resources on a functional topic (eg. pattern matching, curry functions), I am impressed by the depth of the OCaml community. When I got started with this a year ago, the on-line tutorials and manuals for OCaml were vastly superior to F# (and probably still are).

I actually got to grips with F# by working OCaml tutorials in Visual Studio :)

[Edit, May 2010] With the changes to F# in the last year, I would no longer recommend OCaml for learning F#. The differences are just too significant, and would require you to "unlearn" a lot of OCaml. Best to go straight for one of the F# resources.

share|improve this answer

I would consider F# - you get the best of both worlds.

http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/

share|improve this answer

I'd recommend F# (When you're under windows). It has a good IDE (Visual Studio) and debugger, can use the complete .NET-Framework and isn't purely functional like Haskell, but will help getting into functional programming by encompassing object-oriented and some imperative structures. And since it's still being developed and promoted by Microsoft, it won't be soo isolated as Haskell. I think, it has got the biggest "real-world-applicability" of all functional programming languages.

share|improve this answer

F# would be the best choice for it's mature IDE, Visual Studio.

share|improve this answer

What about OCaml ??

share|improve this answer
checklist - IDE: emacs, OcaIDE, cameleon. Compiler maturity: yes. Debugger: ocamldebug with the ability to go back in time (on linux) – ygrek May 19 '10 at 8:47

Ocaml is on my opinion an excelent functional language. It's very reliable, and efficient. The main difference with Scala is that Ocaml brings OOP in FP whereas Scala brings FP in OOP. Nevertheless, I suggest to use OOP Ocaml's features with stinginess and to prefer modules.

share|improve this answer

If you're familiar with Visual Studio and .NET, then F# would be a great bet: http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/about.aspx. Of your three criteria, it's got the IDE and debugging tools, but not compiler maturity. I'd look to Lisp (Common Lisp or Scheme) for that.

share|improve this answer

I suggest giving Lisp/scheme a try. Just because it's so different from anything else. Practical Common Lisp is a wonderful introduction.

share|improve this answer

I'd check into LISP. It allows you to flexibly combine what you know of OO with what you want to learn of Functional Programming styles. As Sander said, Practical Common Lisp is a great start, and the Lisp Hyperspec documents well all of the myriad of Common Lisp functions.

share|improve this answer

The programming language "Scala" must be mentioned as well. It is both object oriented and functional. Java programmers will find it's syntax very natural. Here is the link to the main website: http://www.scala-lang.org/.

share|improve this answer

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