Help for this page

Select Code to Download


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