What does the following COBOL program do?
Posted
by Jon Skeet
on Stack Overflow
See other posts from Stack Overflow
or by Jon Skeet
Published on 2010-04-14T01:52:07Z
Indexed on
2010/04/14
1:53 UTC
Read the original article
Hit count: 287
cobol
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
PROCEDURE DIVISION.
DISPLAY 'Hello, world'.
STOP RUN.
what it do? i need 2 know soon plz help!
© Stack Overflow or respective owner