STOP
STOP RUN
| COBOL | JAVA |
| STOP RUN | stopRun |
Syntax
stopRun ([<returnValue>])
Parameters
<returnValue> (Optional)
Return parameter.
Examples
| COBOL | Java |
|---|---|
STOP RUN.
|
stopRun();
|
STOP <literal>
| COBOL | JAVA |
| STOP <literal> | stop |
Syntax
stop ( <literal> )
Parameters
<literal>
The text to be send to the operator.
Examples
| COBOL | Java |
|---|---|
STOP "Coffee break".
|
stop("Coffee break");
|
