
C H A P T E R 15
■ ■ ■
323
An Introduction to PEAR and Pyrus
Programmers aspire to produce reusable code. This is one of the great goals in object-oriented coding.
We like to abstract useful functionality from the messiness of specific context, turning it into a tool that
can be used again and again. To come at this from another angle, if programmers love the reusable, they
hate duplication. By creating libraries that can be reapplied, programmers avoid the need to implement
similar solutions across multiple projects.
Even if we avoid duplication in our own code, though, there is a wider issue. For every tool you
create, how many other programmers ...