Tested COBOL

This commit is contained in:
ilsix 2024-04-04 22:30:28 +02:00
parent 2e6417f11f
commit 945a097fa7
2 changed files with 5 additions and 2 deletions

View File

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

3
cobol/test.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cobc -x -free helloworld.cbl
./helloworld