To understand the compile-time error message format, consider this incorrect source line:
S=B+C
S=B+C ^----- At column 4, line 7, source module ADD2 Variable expected in this context
If you requested a listing file, it contains the same information and looks as follows:
. . 6 . . . 7 S=B+C ^----- Variable expected in this context 8 . . . . .