Skip to content

Commit 14a9155

Browse files
authored
Merge pull request #34 from huffSamuel/feat/cobol
huffSamuel | Cobol/helloWorld.cbl | Added Cobol hello world example
2 parents 8236b5f + 8e7ea3a commit 14a9155

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Cobol/helloWorld.cbl

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
IDENTIFICATION DIVISION.
2+
PROGRAM-ID. HELLO.
3+
4+
PROCEDURE DIVISION.
5+
DISPLAY 'Hello World'.
6+
STOP RUN.

0 commit comments

Comments
 (0)