Help for this page

Select Code to Download


  1. or download this
     $x, $y, $z  = (2,3,4); # $x = undef, $y = undef, $z = 4
    ($x, $y, $z) = (2,3,4); # $x = 2,     $y = 3,     $z = 4