RosettaCodeData/Task/Flow-control-structures/COBOL/flow-control-structures-1.c...

9 lines
164 B
COBOL

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