vote up 4 vote down star
2

Do functional languages bring anything in the resolution of everyday business problems?

Are there any successful projects that have been implemented using a functional language (ideally with a published test case)?

flag

3  
Yes... take a look at the talks at CUFP (Commercial Users of Functional Programming) at cufp.galois.com – nlucaroni Sep 23 at 19:58
1  
@nlucaroni: Your comment sure looks like an answer -- please post it as an answer so I can upvote it. – S.Lott Sep 23 at 20:00
1  
@gnovice: It looks like Austin and I were editing at the same time and I won the race condition. I've rolled back to the previous version, since I think it sound better. Feel free to add (or subtract) more if it still sounds too vague. – Bill the Lizard Sep 23 at 20:22
1  
guys, that's a VERY important question! Using the examples posted as answers, we can persuade our bosses to allow us to use functional languages in our projects as well! Please, don't close and +1 to Patrick. – Pavel Shved Sep 23 at 20:24
1  
Thanks, Pavel. And while (or because ?) my initial wording was a bit sceptic and controversial, I got plenty of good information. – Patrick Honorez Sep 23 at 20:40
show 5 more comments

8 Answers

vote up 5 vote down check

There are quite a few listed on Functional Programming in the Real World. From the site:

The main criterion for being real-world is that the program was written primarily to perform some task, not primarily to experiment with functional programming.

link|flag
You got it, even if you made the question (which is no more a question) and the answer. Thanks to the other ones as well. Looks like I have some reading to do and opinions to revise. – Patrick Honorez Sep 23 at 20:48
vote up 0 vote down

I would argue that the Lotus Notes formula language is an example of a widely used real world functional programming language.

link|flag
vote up 2 vote down

Xmonad is a dynamically tiling X11 window manager that is written and configured in Haskell.

Facebook's chat feature makes heavy use of Erlang. http://www.facebook.com/note.php?note%5Fid=14218138919&id=9445547199&index=0

link|flag
vote up 7 vote down

The Xen hypervisor is at base, implemented in OCAML; and Erlang is deployed in ultra-high reliability telephony systems (the ones that have zero down-time over periods of years).

link|flag
vote up 0 vote down

Have you heard of Lisp machines before? The emacs editor also makes extensive use of Lisp.

link|flag
you may allready know this but Lisp isn't especially Functional. See en.wikipedia.org/wiki/… You can program it using functional techniques, but the same can be said for most languages. Lisp is considered to be a multi paradigm language – chollida Sep 23 at 20:17
1  
True, Lisp supports other paradigms, but I'd consider it primarily a functional language. – Eric Sep 23 at 21:37
vote up 2 vote down

There was a talk at the Lang.NET conference about how they'd used F# to improve the performance of an insurance application, which is about as everyday as you can get. Silverlight video, WMV video. That said, most of the focus of that talk is on F#'s concurrency support, less on the idiomatically functional aspects of the language.

link|flag
Video is ok, thanks. I was impressed by the comprarison in execution timings. I was less conviced by the 8 weeks training for a team to maintain this, but I guess it may be valuable in some situations. +1 – Patrick Honorez Sep 23 at 20:28
laughter Yes, she seemed far more blase about the cross-training costs than I would have been... but then I guess she was also being paid for giving the training...! – itowlson Sep 23 at 21:14
vote up 2 vote down

Friends of mine use Haskell every day to implement financial algorithms.

link|flag
vote up 1 vote down

One implementation of Perl 6, Pugs, is written in Haskell, but it has largely given way to the standard Rakudo Perl implementation.

link|flag
Why the downvote? Do you dislike Perl? – Chris Lutz Sep 24 at 19:04
Creating a language interpreter is hardly an "everyday business problem"; you yourself say Pugs isn't really a success but has been superseded by a conventional implementation. – Pete Kirkham Oct 2 at 11:09
They did fairly successfully implement Perl. They didn't stop the project because they failed to implement the language, they stopped because they didn't need two implementations, and the Parrot version was preferred. – Chris Lutz Oct 3 at 23:43

Your Answer

Get an OpenID
or

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