From: Simply Hao [mailto:[EMAIL PROTECTED]]
<snip>
>> might want to consider removing chomp() and possibly chop().
>
>They're faster than regexes, right?
</snip>

Dunno about faster but mmmm so sweet.

I like 

        while (<>) { print chomp } 

better then

        while (<>{ 
          s/$/$//;
          print
        }
and it *seems* like it would be faster

-Corwin

Reply via email to