One quick Sunday post, from a comment I wrote in a blog article.
I'm always wondering why a lot of programmers tend to implicitly assume that "the shorter source code, the better".
It is true when it means that with proper code refactoring, making small
objects with dedicated methods, the code of your methods will be smaller.
It is true when you do not like to write as a "Copy & Paste" coder, without
searching to put common code in shared places.
But is it true at the language level?
I mean, is it just because your ARC or GC model allow you not to manage the
object memory, that it is always better?
Just some ideas...

