DRY: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Software Architecture =Overview= If you are in the position to write the second time the same behavior (copy-and-paste) that...") |
No edit summary |
||
Line 5: | Line 5: | ||
=Overview= | =Overview= | ||
If you are in the position to write the second time the same behavior (copy-and-paste) that means the behavior belongs into a reusable function. | ''Don't Repeat Yourself'' - DRY: If you are in the position to write the second time the same behavior (copy-and-paste) that means the behavior belongs into a reusable function. |
Revision as of 22:44, 22 March 2018
Internal
Overview
Don't Repeat Yourself - DRY: If you are in the position to write the second time the same behavior (copy-and-paste) that means the behavior belongs into a reusable function.