in reply to Re: Re: Re: Efficiency in maintenance coding...
in thread Efficiency in maintenance coding...
Maintainability is an interaction between code, users, and programmers. I think that most "Perl hackers" would prefer to work with eduardo's code. Most people who put Perl on their resumes would prefer what dws produced.
I personally prefer working with people who can figure out things like:
(Not that I try to abuse people, but should I find something convenient, I like not having to worry about whether the next person can figure that out.)$freq_count{$_}++ for get_words(<>); # Takes one or more strings, returns all words it finds. sub get_words { map /(\w+(?:'[ts])?)/g, @_; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re (tilly) 3: Efficiency in maintenance coding...
by perrin (Chancellor) on Nov 15, 2001 at 19:56 UTC | |
by jeffa (Bishop) on Nov 15, 2001 at 22:04 UTC |