|
|
|
|
|
by Towaway69
198 days ago
|
|
That's a very good point. My experience is that for large project the architecture also becomes important. Large project have much code but if you can split out responsibility because your architecture allows this, then you keep your code concise. One feature Ruby has that helps here is creating Domain Specific Language without yacc or lex. This allows for concise code where its needed. |
|
(If you like with "Functional Core, Imperative Shell", this is a way to further divide the Functional Core.)
It works well because it narrows the surface area of a lot of possible bugs: either your configuration is wrong, or your code doing the transformations is wrong.