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

9 lines
164 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
PROGRAM-ID. Go-To-Example.
PROCEDURE DIVISION.
Foo.
DISPLAY "Just a reminder: GO TOs are evil."
GO TO Foo
.