----- Original Message ----
From: Jonathan Scott Duff <[EMAIL PROTECTED]>
> 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;
Yes, I believe you're right. Nice catch!
Too bad that generates the following error:
***
unexpected "o"
expecting comment, variable name or "("
at bucket.p6 line 24, column 10
As I recall, Pugs only uses the "int" and "array" stuff as comments right now,
though I could be mistaken.
Cheers,
Ovid