Help for this page

Select Code to Download


  1. or download this
    @arr=(1,2,3,4,5,6,7);
    $n=3;
    # @arr afterwards:
    # (4,5,6,7,1,2,3)
    
  2. or download this
    push @arr,(shift @arr);