Help for this page
#!/usr/bin/perl -l ... 1 while /(.)/g; $_ = "upset"; print $1; # does this print 'y' or 't' for you?
#!/usr/bin/perl -l $_ = "japhy"; 1 while /./g; $_ = "upset";