You are on page 1of 1

IDENTIFICATION DIVISION. PROGRAN-ID. HelloWorld. AUTHOR. Milo. ENVIRONMENT DIVISION. CONFIGURATION SECTION. INPUT-OUTPUT SECTION. DATA DIVISION.

FILE SECTION. WORKING-STORAGE SECTION. LINKAGE SECTION. PROCEDURE DIVISION. DISPLAY "Hello World". STOP RUN.

structure
format: columns basic parts: four Divisions
y y y y

Identification Division: Identifies the name of the program and the programmer. Environment Division: Specification of hardware and files used. Data Division: Declaration of constants, variables, data structures, and file formats. Procedure Division: Executable source code.

You might also like