> > Better answer?     Python.
> 
> Better answer to which question ?

It's like learning to play Oboe after your already know Flute.


Learn Lisp (or Perl or Smalltalk) well and everything else is cake.


ccb

--
Charles C. Bennett, Jr.                                 [EMAIL PROTECTED]

sub mult_by_x_maker { my($x) = shift; return sub { $x * shift }; }

$by_5_xer = mult_by_x_maker(5);
$by_20_xer = mult_by_x_maker(20);

*times_5  = $by_5_xer;
*times_20 = $by_20_xer;

print times_5( 20 ), "\n";
print times_20( 10 ), "\n";

*****************************************************************
To unsubscribe from this list, send mail to [EMAIL PROTECTED]
with the text 'unsubscribe gnhlug' in the message body.
*****************************************************************

Reply via email to