Created
October 10, 2011 04:05
-
-
Save riferrei/1274609 to your computer and use it in GitHub Desktop.
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
IDENTIFICATION DIVISION. | |
PROGRAM-ID. 'helloworld'. | |
ENVIRONMENT DIVISION. | |
INPUT-OUTPUT SECTION. | |
FILE-CONTROL. | |
DATA DIVISION. | |
FILE SECTION. | |
WORKING-STORAGE SECTION. | |
01 MSG PIC X(80). | |
LINKAGE SECTION. | |
PROCEDURE DIVISION. | |
MAIN SECTION. | |
MOVE "Hello World from COBOL!" TO MSG | |
DISPLAY MSG | |
ACCEPT MSG | |
EXIT PROGRAM. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment