Merge pull request #352 from xorgy/patch-1

Make cobol.cbl a well-formed COBOL program.
This commit is contained in:
Mike Donaghy
2017-02-12 16:21:14 -06:00
committed by GitHub

View File

@@ -1,6 +1,6 @@
IDENTIFICATION DIVISION. identification division.
PROGRAM-ID. HELLOWORLD. program-id. cobol.
PROCEDURE DIVISION. procedure division.
MAIN. main.
DISPLAY 'Hello, world.'. display 'Hello, world.' end-display.
STOP RUN. stop run.