Classical Programming Languages: The Legacy of COBOL

0
5940
cobol programmer

The first article in this series defined the term classical programming languages. The longevity of three programming languages, Fortran, COBOL and Pascal (more than five decades) is the reason for calling them classical programming languages. COBOL is an acronym for Common Business-Oriented Language, which is almost exclusively used for programming business applications. Let’s find out why it is relevant even today.

COBOL is still relevant for a number of reasons. First, it is a simple language and easy to learn. If you need to write a program to control the launch of a rocket into space, you will definitely be evaluating integrals, Fourier transforms and a whole lot of other difficult mathematical functions. COBOL is not suitable for such applications. But if your sole aim is to perform a simple task like payroll management, for which all that is needed are basic arithmetic operations, then the use of COBOL is justified. You don’t need a cannon to kill a fly. But if merely being simple or easy to learn was the sole advantage of COBOL, then it would have definitely died out a long time ago.

The second advantage of COBOL is its legacy. During the sixties, when trained programmers were very rare, a simple language like COBOL was in high demand because of its shallow learning curve. At a time when computers were a scarce resource, it was economical to train people in a relatively easy-to-learn language like COBOL. The relatively large number of COBOL programmers naturally led to a lot of COBOL code and applications being developed. Thus, even today, a large number of well-written COBOL code is in existence. Financial institutions all over the world still have huge amounts of COBOL code being executed from powerful mainframes on a regular basis. The existence of such a large amount of legacy code makes COBOL still relevant.

Notice that nobody repairs a smoothly running car. Similarly, nobody is going to port the still smoothly running COBOL code into some other programming language, even if it is the latest in the programming world. I feel some of the claims by members of the COBOL programmer community are a bit exaggerated. My research for this article made me come across statements like ‘more than 200 billion lines of COBOL code are still active’, ‘80 per cent of all the code written is in COBOL’, etc. I do not want to refute these claims as I don’t know where to look for evidence to prove or disprove these statements. But I have heard similar remarks about C, C++, Java, Python, etc, and the math doesn’t add up. Whatever be the case, there definitely is a really large COBOL code base still doing service to mankind.

Data intensive operations are often carried out by mainframe computers. Thus, it is highly likely that you will see some COBOL code if you are working with mainframes.

I could also argue that there is a third point in favour of the relevance of COBOL. With even 5-year old children learning Python, what do you think is the average age of a Python programmer? I believe it to be in the early twenties. (No sources to substantiate this claim, though.) What about the average age of a COBOL programmer? It could be well over forty, I believe. Again, it is just a guess. So here comes the third advantage of having familiarity with COBOL. One day you might be a member of a very small elite group that can maintain the large amount of COBOL legacy code. Like a traditional art form like Kathakali, which still attracts admirers and performers, COBOL will also attract young professionals to learn and code, time and again.

The history
Now let us learn some history. COBOL was designed in 1959 and its development was guided by a consortium called the Conference/Committee on Data Systems Languages (CODASYL) created for the development of a standard programming language for business processing. No single individual can be given the entire credit for the development of COBOL. But the name of one person must be mentioned, Grace Hopper. She was a pioneer in programming and one of the greatest programming language designers. As a side note, the illustrious career of Grace Hopper is inspiring and worth a few Internet searches to obtain more information. A programming language called FLOWMATIC developed by her has influenced the development of COBOL a lot.

Figure 1: Output of the program cob1.cob

Like all other programming languages, COBOL has also gone through a lot of revisions and upgrades over the years. Some of the standards of COBOL that made an impact include COBOL-60, COBOL-61, COBOL-65, COBOL-68, COBOL-74, COBOL-85, etc, with each introducing much awaited features. Finally, the long awaited object-oriented dialect of COBOL came in 2002, thus making COBOL a truly modern language. The latest standard of COBOL is COBOL 2014. Though COBOL is modernising almost as fast as any young programming language, it is still lagging behind them. A lot of features are missing but none of them are critical to the domain in which COBOL applications are deployed. Though of the least concern, it was disheartening to know that COBOL does not have a mascot or a logo. May be that is something the COBOL programming community should come up with soon, and the earlier the better.

Running COBOL programs in Linux
The next important question is: how to run COBOL programs in Linux? An open source COBOL compiler called GnuCOBOL helps us in this aspect. GnuCOBOL was earlier known as OpenCOBOL. GnuCOBOL can be installed in Ubuntu with the command sudo apt install open-cobol. The installation is simple in other Linux distributions also.

Now let us see a simple COBOL program so that we can test our compiler. Consider the program cob1.cob shown below. It is the classical program of printing a message on the screen. COBOL programs can also have the extensions .cbl and .cpy:

id division.
program-id. cob1.
*> THIS IS A COMMENT IN COBOL
procedure division.
display “Doesn’t COBOL look like English?”
stop run.

Let us go through the code for better understanding. First, let me make a comment. Don’t you feel that COBOL programs look like English text? I thought about showing one more COBOL program that almost looks like English prose but then decided not to do that. This lack of mathematical notations might be a hindrance to the mathematically oriented programmers of today but this was not so in the sixties, seventies and eighties where the bulk of the COBOL code was produced.

Now, let us come back to the program cob1.cob, which can be executed with the command cobc -x -free cob1.cob. The option -free tells the compiler that the program is written in free-form style. Initial versions of COBOL had strict regulations regarding the specific rows and columns in which a particular code should be written. The option -x makes sure that an executable file named cob1 is created. This executable file can be run using the command ./cob1. Figure 1 shows the compilation and output of the program cob1.cob.

This program also tells us that COBOL programs are divided into different divisions. Some of these are mandatory and some others voluntary, and might be included in the program only when the need arises. Of course, COBOL does have its quirks and drawbacks. Imagine the horror of a seasoned Python programmer, who can find the sum of integers less than 100 by just using the one-liner print sum(range(100)), coming to know that he has to write half a page of meta-code to set up the environment even before writing a single line of actual code in COBOL. Yes! COBOL is really old and it does have problems due to its old age. Whatever the case may be, millions of lines of such code are still in existence and might be in need of maintenance. If a young programmer decides to learn and work with COBOL, he should think of himself as a mechanic repairing vintage cars. To the best of my belief, such mechanics earn well.

In this article we have seen why COBOL is still relevant and have learned the bare minimum to begin with COBOL. Before we part ways, let me attempt predicting the future of COBOL. I believe that as long as there are COBOL applications running in mainframe computers, the language will be relevant — and that will be happening for a long time from now. In the next and final article in this series we will discuss Pascal, which is another time tested, weather-beaten programming language that is still making an impact in the programming world.

LEAVE A REPLY

Please enter your comment!
Please enter your name here