Intial commit of source code samples for GitHub repo.
This commit is contained in:
parent
5793080047
commit
9462407ba8
14 changed files with 397 additions and 1 deletions
5
COBOL/Makefile
Normal file
5
COBOL/Makefile
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
COBCFLAGS=-free -x
|
||||
|
||||
|
||||
hello: hello.cob
|
||||
cobc ${COBCFLAGS} -o hello hello.cob
|
||||
6
COBOL/hello.cob
Normal file
6
COBOL/hello.cob
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. HELLO-WORLD.
|
||||
* simple hello world program
|
||||
PROCEDURE DIVISION.
|
||||
DISPLAY 'Hello COBOL world!'.
|
||||
STOP RUN.
|
||||
Loading…
Add table
Add a link
Reference in a new issue