(no title)
mrsmrtss | 12 days ago
Fore example, is this Java (65.72% dryness)
if (condition){
Blah();
}
really more dense than this C# (58.4% dryness)? if (condition)
{
Blah();
}
Now, does this Clojure 77.91 dryness) really beats them both to that margin? (if (condition)
(blah)))
This metric measures formatting more than anything else. I don't even go to other more nuanced details.
so-cal-schemer|11 days ago
But still.. are 41.6% the lines of C# code stand-alone braces?
mrsmrtss|11 days ago