For old times sake – COBOL on Linux
To Install on Debian or Ubuntu just enter the following: sudo apt install open-cobol Create your program with .cbl suffix for example vars.cbl and compile with cobc -free -x -o vars vars.cbl Download the following example cbl file with this link IDENTIFICATION DIVISION. PROGRAM-ID. VARS. DATA DIVISION. WORKING-STORAGE SECTION. *> define a number with a…