From 7a363560728e7e581dc95473bbe2e67d8dae4426 Mon Sep 17 00:00:00 2001 From: ilsix Date: Thu, 4 Apr 2024 20:16:56 +0200 Subject: [PATCH] Untested COBOL --- cobol/helloworld.cbl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cobol/helloworld.cbl diff --git a/cobol/helloworld.cbl b/cobol/helloworld.cbl new file mode 100644 index 0000000..2d2a209 --- /dev/null +++ b/cobol/helloworld.cbl @@ -0,0 +1,6 @@ +IDENTIFICATION DIVISION. +PROGRAM-ID. HELLOWORLD. + +PROCEDURE DIVISION. +DISPLAY "Hello World in COBOL!". +STOP RUN. \ No newline at end of file