RosettaCodeData/Task/Flow-control-structures/COBOL/flow-control-structures-1.cob
2026-04-30 12:34:36 -04:00

8 lines
164 B
COBOL

PROGRAM-ID. Go-To-Example.
PROCEDURE DIVISION.
Foo.
DISPLAY "Just a reminder: GO TOs are evil."
GO TO Foo
.