Help for this page

Select Code to Download


  1. or download this
    (undef, $foo, undef, undef, $bar) =(1..5);
    print "$foo $bar";
    
  2. or download this
    ($foo, $bar) =(1..5)[1,4];
    print "$foo $bar";