1 2 3 4
cap_growth = 5 v = (@property.current_value / 100 * cap_growth) + @property.current_value ...
Ruby compound interest
by nootopian,
September 30, 2007 12:50,
6 refactorings
there must be a better way ...
1 2 3 4
cap_growth = 5 v = (@property.current_value / 100 * cap_growth) + @property.current_value ...
there must be a better way ...
@Ryan, thanks for solving m...