Created
November 23, 2017 17:59
-
-
Save brakmic/c1df6c8c947aef2e445652b73d56ca02 to your computer and use it in GitHub Desktop.
Hello World in COBOL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
000001 IDENTIFICATION DIVISION. | |
000002 PROGRAM-ID. HELLO-WORLD. | |
000003 PROCEDURE DIVISION. | |
000004 DISPLAY 'Hello, World!' | |
000005 STOP RUN. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment