Help for this page

Select Code to Download


  1. or download this
    for ($i = 0; $i <= $#sortedNames; $i++) {
    
  2. or download this
    for my $i (0..$#sortedNames) {
    
  3. or download this
    for my $name (@sortedNames) {
    
  4. or download this
    $toOutput = reverse $temp[0];
    $toOutput .= $x;
    $output = reverse $toOutput;
    
  5. or download this
    $output = $x . $temp[0];