diff --git a/cobol/helloworld.cbl b/cobol/helloworld.cbl index 2d2a209..8a460c8 100644 --- a/cobol/helloworld.cbl +++ b/cobol/helloworld.cbl @@ -2,5 +2,5 @@ IDENTIFICATION DIVISION. PROGRAM-ID. HELLOWORLD. PROCEDURE DIVISION. -DISPLAY "Hello World in COBOL!". -STOP RUN. \ No newline at end of file +DISPLAY "Hello World!". +STOP RUN. diff --git a/cobol/test.sh b/cobol/test.sh new file mode 100755 index 0000000..05d5909 --- /dev/null +++ b/cobol/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +cobc -x -free helloworld.cbl +./helloworld \ No newline at end of file