DRY without having single code?
i want to not repeat myself (DRY), but i cannot have a single piece of code. For example here is code repeated 3 times with the same bug: class StarWars : Movie { //Calculate "base ^ exponent" public float Power(float base, float exponent) { return (base * exponent); } } class Customer: Object { //Calculate "base ^...