Skip to content

Instantly share code, notes, and snippets.

@daiksy
Created May 5, 2012 15:46
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 daiksy/2603475 to your computer and use it in GitHub Desktop.
Save daiksy/2603475 to your computer and use it in GitHub Desktop.
COBOL書いてみた
000100 IDENTIFICATION DIVISION.
000200 PROGRAM-ID. HELLOWORLD.
000300 DATE-WRITTEN. 05/06/12 00:45.
000400* AUTHOR DAIKSY
100000 PROCEDURE DIVISION.
100100
100200 MAIN-LOGIC SECTION.
100300 BEGIN.
100500 DISPLAY "HELLO, WORLD."
100600 STOP RUN.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment