Help for this page

Select Code to Download


  1. or download this
    my @array = qw(one two three);
    print "@{[@array, reverse @array]}\n";
    
  2. or download this
    my @yarra = reverse my @array = qw(one two three);
    print "@array @yarra\n";