Help for this page

Select Code to Download


  1. or download this
    my @array = 0..5;
    my @ranks[@array] = 5..10; # @ranks now contains 5, 6, 7, 8, 9, 10
    
  2. or download this
    my @array = 0..5;
    my @ranks;
    @ranks[@array] = 5..10; # @ranks now contains 5, 6, 7, 8, 9, 10