|
|
|
|
|
by bdibs
2731 days ago
|
|
I might have misused the word expressive, I don't mean bloated code with more than necessary logic. I just meant simple to understand variable, function, and class names. That combined with small classes and functions, makes following the logic of your program extremely easy. Following concepts like DRY (don't repeat yourself) and the single responsibility principle ensure that you're making more easily testable code, and I'm sure less overall LOC. |
|