I am running a cobol program in Batch and Online
You can force the program to jump to the beginning of any paragraph with a GO TO. Here is an
example:
GO TO paragraph-name.
A GO TO is like a PERFORM in that the program jumps to a new paragraph. However, when that
paragraph is completed, the PERFORM returns to the line at which the PERFORM was requested, but the
GO TO does not. When a GO TO reaches the end of the paragraph to which it has jumped, it moves into
the next paragraph.
GO TO is written as two words, but it is used as one. The words always appear together