Help for this page

Select Code to Download


  1. or download this
    @x = @{$a};
    foreach my $i (@x) {
    ...
            undef $i;
    }
    
  2. or download this
    my $a = ['a', 'b', 'c'];
    foreach  (@{$a}) {
    ...
            undef $i;
    }