Help for this page

Select Code to Download


  1. or download this
    my $x; @$x = (5, 7);
    my $y; $$y[2] = 9;
    my $z; @$z[2 .. 4] = (5, 7);
    my $w; grep 0, @$w[2 .. 4];
    
  2. or download this
    my @x; grep 0, $x[2];