GOBACK
Syntax
goBack ( <exitModuleCallRequired> ) m_CobolPerform.StopSubprogram();
return;
Parameters
- <exitModuleCallRequired>
- Set to true if the code isn't located in the main section.
Examples
| COBOL |
Java |
0000-GOBACK
GOBACK.
|
lab_0000_Goback:
goBack(true);
cobolPerformBase.stopSubprogram();
return;
|