Untested COBOL

This commit is contained in:
ilsix 2024-04-04 20:16:56 +02:00
parent 5233e72a88
commit 7a36356072

6
cobol/helloworld.cbl Normal file
View File

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