vote up 8 vote down star
6

It seems to me from my experimenting with Haskell, Erlang and Scheme that functional programming languages are a fantastic way to answer scientific questions. For example, taking a small set of data and performing some extensive analysis on it to return a significant answer. It's great for working through some tough Project Euler questions or trying out the Google Code Jam in an original way.

At the same time it seems that by their very nature, they are more suited to finding analytical solutions than actually performing practical tasks. I noticed this most strongly in Haskell, where everything is evaluated lazily and your whole program boils down to one giant analytical solution for some given data that you either hard-code into the program or tack on messily through Haskell's limited IO capabilities.

Basically, the tasks I would call 'practical' such as

Aceept a request, find and process requested data,
 and return it formatted as needed

seem to translate much more directly into procedural languages. The most luck I have had finding a functional language that works like this is Factor, which I would liken to a reverse-polish-notation version of Python.

So I am just curious whether I have missed something in these languages or I am just way off the ball in how I ask this question. Does anyone have examples of functional languages that are great at performing practical tasks or practical tasks that are best performed by functional languages?

flag

4 Answers

vote up 3 vote down

Regarding languages, I think F# is an example of a languages that's primarily 'functional' but also 'practical'. Scala and Clojure are probably others in this category.

(Going one level deeper, I think the 'formula for success' here is a language that leans strongly towards 'functional', but has access to vast practical libraries (e.g. .Net/JVM/some C FFI) and has good tooling (e.g. IDE support).)

I at least somewhat agree with the implicit premise of the question, namely that there is a tension between 'succinct/beautiful analytical power' and 'pragmatics'.

link|flag
2  
In the case of F#, which targets the CLR, you can have the best of both worlds: program your stuff that'll benifit from a functional language in F#, then either use F# for the rest, or switch to C#, or VB.NET, or... – Matthew Scharley Oct 12 at 10:56
Or you just use Nemerle for all of it... – Maximilian Mayerl Oct 12 at 11:04
vote up 2 vote down

Erlang is well known for its robustness and features for writing highly-concurrent servers.

It also has a DBMS out-of-box.

link|flag
It's also worth pointing out that Erlang is in heavy use on telephone switches and similar equipment, and can therefore be said to be good for at least one practical task. – High-Performance Mark Oct 12 at 14:52
vote up 0 vote down

Functional Programming in the Real World

link|flag
vote up 0 vote down

IMO, Scheme is too minimalistic to be practical- it is used in several courses for teaching (see Structure and Interpretation of Computer Programs). However, modern Lisp languages like Common Lisp, and especially Clojure are gaining importance. Erlang is used by several large industries for high concurrency applications, and I personally haven't seen it being used by end-user programmers. Haskell on the other hand is quite a real-world language, and has been used to write a lot of wonderful software including:

  1. XMonad is an X Window System window manager written purely in Haskell.
  2. Leksah, an IDE for Haskell is written in Haskell itself.
  3. Pugs, one of the leading implementations of Perl 6 is written in Haskell.
  4. Lastly, the Glasgow Haskell Compiler is written in Haskell.
link|flag

Your Answer

Get an OpenID
or

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