Help for this page

Select Code to Download


  1. or download this
     (my ($x, $y, $z) = qw( 1 2 3 )) = qw( a b c );
    
  2. or download this
     my ($x, $y, $z) = qw( 1 2 3 ); # $x = '1', $y = '2', $z = '3'.
     ($x, $y, $z)    = qw( a b c ); # $x = 'a', $y = 'b', $z = 'c'.