http://www.perlmonks.org?node_id=18173


in reply to RE: RE: COBOL vs. Perl
in thread COBOL vs. Perl

Absolutely right!

Something that I think gets lost in this mad rush to find the smallest most obscure code to solve a problem is that often you're sacrificing error-checking along the way. In the real world, I place much more emphasis on Doing the Right Thing than in brevity.

I applaud you for this. I wish more people followed your lead.

(Yes, I am a boring old fart :-)

Replies are listed 'Best First'.
RE: RE: RE: RE: COBOL vs. Perl
by Anonymous Monk on Jun 21, 2000 at 22:04 UTC
    I must admit that there has been many a time that I've come up with some beautiful piece of code that does exactly what I want it to do in one line or two, and then I have to pollute it and expand it with all of the error checking conditions. Most annoying, but necessary. The approach that I take to my code is "Make things as simple as possible, but no simpler". In other words, brevity is good and worthwhile and whatnot, but as soon as you start sacrificing necessary functionality or readability, you're trying to make it too short and you need to slow down a little. Most of my code tends to be fairly readable as a result. :)