What You Will Get Out of This Chapter
Having an application crunch numbers and catch exceptions is nice. However, it is very limiting. Without being able to interact with the outside world, you might as well have something that exists only in a bubble and is of limited use at best. In this chapter the goal is to explain how your application will work outside the scope of its running process.
- 1)
How to read and write text files. You will find out how to import the contents of a file and work with it in a way that is ...