Help for this page

Select Code to Download


  1. or download this
    my @foo = (1..8);
    
    my @bar = @foo[map {$_ ^ 1} (0..$#foo)];
    
    print "@bar";
    
  2. or download this
    2 1 4 3 6 5 8 7