Help for this page

Select Code to Download


  1. or download this
    # Take a word
    my $word = "Constantinople";
    ...
    
    # Join back into a single word:
    my $drow = join('', @srettel);
    
  2. or download this
    my $drow = join('', reverse split //, "Constantinople");