Patching Programs
You can use expressions in evaluation points to patch your code if you use the goto (C) and GOTO (Fortran) statements to jump to a different program location. This lets you:
- Branch around code that you do not want your program to execute.
- Add new pieces of code.
In many cases, correcting an error means that you will do both operations: you patch out incorrect lines and patch in corrections.