Help for this page

Select Code to Download


  1. or download this
    my($stuff1, $stuff2) = @array; # eventough it has more than two elemen
    +ts
    my($stuff1, $stuff2) = @array;
    # if you never use $stuff2 for the rest of your program, then you're w
    +asting memory used by $stuff2.
    
  2. or download this
    # skipping the second and third elements
    my($stuff1, undef, undef, $stuff4) = @array;
    
  3. or download this
    # using scalars
    my($name, $age, $birthday, $address, $zipcode, $city, $country) = @arr
    +ay;
    ...
    
    # you can write
    print "name = $user{name}\n";