Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to learn pure functional programming language like Haskell as I am from Perl background and read that Perl can also implement functional programming techniques. So few qusetions came in mind:

  • Whether it is worth doing it in Perl 5?
  • Does Perl 6 will make a difference?
  • Can anybody suggest some code/examples implementing functional programming techniques in Perl?

    Thanks

  • share|improve this question
    7  
    Of course, if you want to learn functional programming from the ground up, it's best to learn Haskell right away. In particular, Perl is missing the pure part in "purely functional programming". – Heinrich Apfelmus Oct 29 '10 at 10:25
    1  
    @Heinrich - You don't have to use the impure parts :) – DVK Oct 29 '10 at 13:39
    @DVK. ... until you want to do IO. ;-) – Heinrich Apfelmus Oct 29 '10 at 14:46

    3 Answers

    up vote 35 down vote accepted

    Read Higher-Order Perl. You can buy it or download for free. It provides insights even to experienced Perl programmers.

    share|improve this answer
    1  
    Thank you. An upvote was simply not enough. :) – Susheel Javadi Oct 29 '10 at 21:27

    Functional programming is just programming, you can do it in any language. If you like how the Haskell API is laid out, you might like my Data::Monad module, which provides Moose roles for various Haskell typeclasses including Monad. (Unlike Haskell, though, there is no "fail" in my Monad, and all Monads are Functors.)

    Here's an example of exercising the various typeclasses in the context of a data structure that handles success or failure (like Control.Monad.Error):

    http://github.com/jrockway/data-monad/blob/master/t/error.t

    Note that it has the ability to convert usual Perl computations that can fail with an exception to a pure procedure that you can bind to other procedures. This lets "regular Perl" work inside a program designed to have a more functional control flow.

    share|improve this answer
    5  
    Regarding "you can do it in any language", I disagree. Well... you CAN do it in any language but you WONT if it's harder/longer to code. At some point, syntax matters. This blog post enfranchisedmind.com/blog/posts/scala-not-functional makes this clear. However, I don't know how Perl deals with this. – gawi Oct 29 '10 at 19:21
    1  
    Yes, Haskell and OCaml have a syntax-less function application operator. That is not what makes programming in Haskell "functional programming", though. – jrockway Oct 30 '10 at 1:36

    perl6 is still a work in progress, so even though perl6 has much improved support for functional programming at the language level (see perlgeek.de on currying in perl6, for example), you'll probably want to start now with perl5 so you can get to work with what's out there. i recommend looking into cpan for higher-level library support...Array::Utils and others (there's a lot!)

    share|improve this answer

    Your Answer

     
    discard

    By posting your answer, you agree to the privacy policy and terms of service.

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