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.
PROGRAM-ID. HELLOWORLD.
PROCEDURE DIVISION.
MAIN.
DISPLAY 'Hello, world.'.
STOP RUN.
identification division.
program-id. cobol.
procedure division.
main.
display 'Hello, world.' end-display.
stop run.