My two cents ...

On Wed, May 24, 2006 at 10:52:29AM +0200, A. Pagaltzis wrote:
>     my int @results;

The above line says that @results is an array of integers, but ...

>      @results.push( [$i, $j, $k, $l] );

pushes an array reference onto @results (rather than things that are
int). If you're going to type @results, maybe it needs to be:

my @results is Array of Array of int;    

or maybe

my Array of int @results;

Or something like that :-)

-Scott
-- 
Jonathan Scott Duff
[EMAIL PROTECTED]

Reply via email to