1
0
mirror of synced 2024-07-01 15:52:46 +02:00

Port of No Code to COBOL

This commit is contained in:
Geoff Foley 2018-02-08 14:55:26 -08:00 committed by GitHub
parent ed6c73fc16
commit a108b9fb24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
NoCodeToCOBOL.CBL Normal file
View File

@ -0,0 +1,8 @@
$ SET SOURCEFORMAT"FREE"
IDENTIFICATION DIVISION.
PROGRAM-ID. NoCodeToCOBOL.
PROCEDURE DIVISION.
DisplayPrompt.
DISPLAY "I did it".
STOP RUN.