Skip to content

Instantly share code, notes, and snippets.

@brakmic
Created November 23, 2017 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brakmic/c1df6c8c947aef2e445652b73d56ca02 to your computer and use it in GitHub Desktop.
Save brakmic/c1df6c8c947aef2e445652b73d56ca02 to your computer and use it in GitHub Desktop.
Hello World in COBOL
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