in reply to Re: Really Writing Object Oriented Perl
in thread Really Writing Object Oriented Perl

Just to clarify Jenda's good point, functional programming is a style that avoids state (i.e., variables) and centers around evaluating the value of functions. LISP is a functional language. Procedural programming is written as a list of instructions (segregated into procedures) for the computer to follow, changing state as it goes. C is a an example.

  • Comment on Re^2: Really Writing Object Oriented Perl

Replies are listed 'Best First'.
Re^3: Really Writing Object Oriented Perl
by adrianh (Chancellor) on Jun 04, 2007 at 15:42 UTC
    LISP is a functional language

    Probably more accurate to say that Lisp can be written in a functional style. You also get OO Lisp, and the usual load of procedural code. Much like Perl in fact :-)

    For functional languages look at things like Haskell.