Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Need to un-itemize the passed list for for to iterate
  • Loading branch information
niner committed Sep 16, 2015
1 parent ce80412 commit d72abe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S06-signature/passing-arrays.t
Expand Up @@ -19,7 +19,7 @@ plan 11;

sub count2($a) {
my $x = 0;
$x++ for $a;
$x++ for $a.list;
return $x;
}

Expand Down

0 comments on commit d72abe5

Please sign in to comment.