What is the best Functional Programming Language for Experienced OO Developers? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:57:28Zhttp://stackoverflow.com/feeds/question/927272http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers17What is the best Functional Programming Language for Experienced OO Developers?Kieveli2009-05-29T17:51:16Z2009-07-14T12:14:08Z
<p>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:</p>
<ul>
<li>IDE</li>
<li>Compiler Maturity</li>
<li>Debugging Tools</li>
</ul>
<p>Which Functional Programming language would you recommend?</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927286#92728612Answer by alamar for What is the best Functional Programming Language for Experienced OO Developers?alamar2009-05-29T17:55:14Z2009-05-29T18:00:27Z<p>Scala?</p>
<p>Good IDE support, Java class library and debugging tools. And it's OO/functional, not <em>just</em> functional. And it runs in the JVM.</p>
<p><a href="http://www.scala-lang.org/" rel="nofollow">http://www.scala-lang.org/</a></p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927293#92729322Answer by Mat Nadrofsky for What is the best Functional Programming Language for Experienced OO Developers?Mat Nadrofsky2009-05-29T17:55:54Z2009-05-29T18:02:52Z<p>I would take a very long look <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/" rel="nofollow">at F#</a> for this. It's got Visual Studio as the IDE which is fantastic and a <a href="http://msdn.microsoft.com/en-ca/fsharp/default.aspx" rel="nofollow">pile of resources</a>.</p>
<p>A few of our guys have started using it and exploring the power of the language.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927302#9273023Answer by Charles for What is the best Functional Programming Language for Experienced OO Developers?Charles2009-05-29T17:57:15Z2009-05-29T17:57:15Z<p>I would consider F# - you get the best of both worlds.</p>
<p><a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/" rel="nofollow">http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/</a></p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927305#9273058Answer by Tom Hubbard for What is the best Functional Programming Language for Experienced OO Developers?Tom Hubbard2009-05-29T17:57:31Z2009-05-29T18:05:11Z<p>Javascript is very good for learning and using functional programming. </p>
<p>You implicitly use it when setting an onclick for an html element.</p>
<p>It's close enough to the C style syntax to not have a lot of extra confsion because of syntax.</p>
<p>It can be used in the browser and on the command line through Java.</p>
<p>For a good overview, watch the Crockford videos from YUI theater.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927310#9273101Answer by Kyle Ryan for What is the best Functional Programming Language for Experienced OO Developers?Kyle Ryan2009-05-29T17:58:13Z2009-05-29T17:58:13Z<p>If you're familiar with Visual Studio and .NET, then F# would be a great bet: <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/about.aspx" rel="nofollow">http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/about.aspx</a>. 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. </p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927316#9273167Answer by JP for What is the best Functional Programming Language for Experienced OO Developers?JP2009-05-29T17:59:48Z2009-05-29T18:11:41Z<p><a href="http://haskell.org/" rel="nofollow">Haskell</a> is widely used as is <a href="http://en.wikipedia.org/wiki/Erlang%5F%28programming%5Flanguage%29" rel="nofollow">Erlang</a>. <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/" rel="nofollow">F#</a> is up and coming, but much newer. And, of course, there are <a href="http://en.wikipedia.org/wiki/Lisp%5Fprogramming%5Flanguage" rel="nofollow">Lisp</a> and <a href="http://groups.csail.mit.edu/mac/projects/scheme/" rel="nofollow">Scheme</a>.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927326#92732617Answer by ShreevatsaR for What is the best Functional Programming Language for Experienced OO Developers?ShreevatsaR2009-05-29T18:01:47Z2009-05-29T18:15:36Z<p>Seems to me that if you're an experienced OO programmer, you should learn a functional programming language that does <em>not</em> let you keep on programming in the OO style.</p>
<p>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).</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927343#92734310Answer by iny for What is the best Functional Programming Language for Experienced OO Developers?iny2009-05-29T18:06:02Z2009-05-29T18:15:11Z<p>Scheme, start by reading <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">SICP</a>. After that you can use any language you want.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927347#9273474Answer by LB for What is the best Functional Programming Language for Experienced OO Developers?LB 2009-05-29T18:06:52Z2009-05-29T18:58:31Z<p>Even if i'm going to be down-voted, i've to say O'caml...</p>
<p>IDE: emacs
Compiler: pretty good
Debugging tools: not so much</p>
<p>but it has a kind of object-oriented flavor that would be good for the transition ....</p>
<p>(otherwise go for F#)</p>
<p>I forgot, there's Nemerle also..a mix of C# with functional programming (I don't what is the status of this project though..) </p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927419#9274193Answer by Dario for What is the best Functional Programming Language for Experienced OO Developers?Dario2009-05-29T18:20:20Z2009-05-29T18:20:20Z<p>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.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927460#9274604Answer by Javaman59 for What is the best Functional Programming Language for Experienced OO Developers?Javaman592009-05-29T18:27:51Z2009-05-29T18:45:34Z<p>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)</p>
<p>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).</p>
<p>I actually got to grips with F# by working OCaml tutorials in Visual Studio :)</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927565#9275655Answer by crashmstr for What is the best Functional Programming Language for Experienced OO Developers?crashmstr2009-05-29T18:56:53Z2009-05-29T19:01:53Z<p>I've worked with both <a href="http://en.wikipedia.org/wiki/Scheme_(programming_language)" rel="nofollow">Scheme</a> and some <a href="http://en.wikipedia.org/wiki/SML_of_New_Jersey" rel="nofollow">SML-NJ (Standard ML / New Jersey)</a> in the past.</p>
<p>But I would highly recommend picking up <a href="http://rads.stackoverflow.com/amzn/click/0262560992" rel="nofollow"><i>The Little Schemer</i></a> or <a href="http://rads.stackoverflow.com/amzn/click/026256114X" rel="nofollow"><i>The Little MLer</i></a> by Friedman and Felleisen. They start <i>really</i> basic and work up to lambdas and such, in a picture book kind of way.</p>
<p>Given the popularity of OCaml and F# (both in the ML family), <i>The Little MLer</i> might be more what you want.</p>
<p>If you go with Scheme though (and I love Scheme), the <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">SICP</a> is also a great book. I still have mine from college. Friedman, Felleisen, et. al. also have two other Scheme books in their series.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927608#9276081Answer by Sander Marechal for What is the best Functional Programming Language for Experienced OO Developers?Sander Marechal2009-05-29T19:05:36Z2009-05-29T19:05:36Z<p>I suggest giving Lisp/scheme a try. Just because it's so different from anything else. <a href="http://gigamonkeys.com/book/" rel="nofollow">Practical Common Lisp</a> is a wonderful introduction.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927659#9276591Answer by Fox for What is the best Functional Programming Language for Experienced OO Developers?Fox2009-05-29T19:13:51Z2009-05-29T19:13:51Z<p>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.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/1124989#11249890Answer by Fibonacci for What is the best Functional Programming Language for Experienced OO Developers?Fibonacci2009-07-14T12:14:08Z2009-07-14T12:14:08Z<p>What about OCaml ??</p>