cobol
Déclaration GOBACK
Recherche…
Remarques
La déclaration COBOL GOBACK
est un retour. Contrairement à EXIT PROGRAM
, ou STOP RUN
, GOBACK
renvoie toujours un niveau. Si le module actuel est "principal", GOBACK
retournera au système d'exploitation. Si le module actuel est un sous-programme, GOBACK
reviendra à l'instruction après un appel.
RETOURNER
identification division.
program-id. subprog.
procedure division.
display "in subprog"
goback.
...
call "subprog"
goback.
Le premier GOBACK
ci-dessus reviendra de subprog. En supposant que le second soit à l'intérieur de la procédure principale, GOBACK
retournera au système d'exploitation.
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow