Help for this page

Select Code to Download


  1. or download this
    my @x = ($a,$b) = (4,5,6);   # @x = (4,5)
    
  2. or download this
    my $x = ($a,$b) = (4,5,6);   # $x = 3