in reply to I find some strange on this code ? Sort the issue

You call reverse in list context, but your list contains only one element!
You might want to call it in scalar context to get a reversed string.
print scalar(reverse join ' ', q/teY rehtona lreP .rekcah/);
Read all about perldoc -f reverse here.
Boris

Replies are listed 'Best First'.
Re^2: I find some strange on this code ? Sort the issue
by ikegami (Patriarch) on Feb 01, 2005 at 15:34 UTC
    You should test your answers. It returns "hacker. Perl another Yet" instead of "Yet another Perl hacker."
      Funny, I did not notice that.
      print join ' ', reverse split ' ', reverse q/teY rehtona lreP .rekcah/
      here is a even cooler example of reverse.
      Boris