Tidying up the Calculator application
The calculator application works now, but let's clean it up a bit.
These are the areas for improvement:
1. String to number conversion in convertToNumber: is more properly a String capability
2. An object interface is easier to understand if the methods are categorized
3. An object interface is easier to understand if the internal methods are made private and the public interface is made public
4. An application is easier to distribute if the applications on which it depends are clearly marked
5. considerations for future extension.
Last modified date: 06/27/2019