I recently stumbled on Erlang and Haskell; I admit I am currently in the process of sipping the Kool-Aid of functional programming :) What I find disturbing; however, is that I did not learn about them until after coding for almost 15 years. Now, there are some tasks where it appears I was attempting to saw with a hammer. For example: I'm currently writing scalable, event driven server software - expressing this in Erlang is natural, almost effortless; where as in C++ I would be using an amalgam of boost threads/locks/zmq message passing/debugging deadlocks/etc...
My question - What are some other languages out there, and the problems they really excel at? I know that any Turing-complete language can theoretically do anything, but what about when the language naturally works with you instead of against - given a specific problem domain?