Help for this page

Select Code to Download


  1. or download this
      my @c = ( 22, 44, 55 );
      my @d = ( 'yy', 'tt' );
    # or
      my @d = qw(yy tt);
    
  2. or download this
      $b[0] = \@c; # hold a reference to @c.
      $b[1] = \@d;
    
  3. or download this
      my @e = @{$b[1]};