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