(no title)
codewench | 1 year ago
Maintainability is, in my opinion, just as important as other considerations when writing code. And often the more verbose approach is composed of simpler steps, meaning bugs can be easier to spot during code reviews
dkarl|1 year ago
1. One reasonable line of code
2. Several lines of plain code
3. A function call, moving the implementation elsewhere
4. A gnarly one-liner
(The tough part about this is drawing the line between 1 & 4.)