cobolplayground/shortProgram.cob

9 lines
207 B
COBOL
Raw Permalink Normal View History

2020-03-27 22:46:03 +01:00
000010 IDENTIFICATION DIVISION.
000020 PROGRAM-ID. ShortestProgram.
000030 AUTHOR. Wolfgang Hottgenroth.
000040 PROCEDURE DIVISION.
000050 DisplayPrompt.
2020-03-27 23:22:14 +01:00
000060 DISPLAY "I did it".
000070 STOP RUN.
2020-03-27 22:46:03 +01:00