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

9 lines
164 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
PROGRAM-ID. Go-To-Example.
PROCEDURE DIVISION.
Foo.
DISPLAY "Just a reminder: GO TOs are evil."
GO TO Foo
.