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

9 lines
164 B
COBOL
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
PROGRAM-ID. Go-To-Example.
PROCEDURE DIVISION.
Foo.
DISPLAY "Just a reminder: GO TOs are evil."
GO TO Foo
.