Help for this page

Select Code to Download


  1. or download this
    @b = @a;
    
  2. or download this
    @b = (); # temporary internal step
    @b = @a;
    
  3. or download this
    use Data::Dumper;
    
    ...
    
    print Dumper(\@a);
    print Dumper(\@b);
    
  4. or download this
    $VAR1 = [
              1,
    ...
              1,
              2
            ];