add COBOL language support

This commit is contained in:
Michael Mullis
2013-05-30 01:17:07 +00:00
parent 912f635d2a
commit 420594874a
5 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
IDENTIFICATION DIVISION.
PROGRAM-ID. hello.
PROCEDURE DIVISION.
DISPLAY "Hello World!".
STOP RUN.