Help for this page

Select Code to Download


  1. or download this
    my @usernames = qw(zero one two three four five six);
    testswap(\@usernames);
    ...
     my $j = 5;
     @$array[$i, $j] = @$array[$j, $i];
    }
    
  2. or download this
    zero one five three four two six
  3. or download this
    my $username = $usernames[rand(@usernames)];