COBOL

COBOL is one of the oldest programming languages and has been pronounced dead many times.
The abbreviation stands for COmmon Business Oriented Language and was primarily developed for finance, business and administration.
Still running in many banks, processing financial transactions in the background every day all over the world, I decided to teach myself some COBOL.
Yes, I know: It is not sexy, but it will pay and it is actually fun learning something pretty different from modern programming languages.
In COBOL you can implement loops using either GO TO or PERFORM.
Since jump marks like GO TO are notorious and considered bad coding practice, I will focus on PERFORM in this article.
Just be aware that you will find programmers using GO TO and yes, I do blame them for that no matter which programming language or how experienced they are.
GO TO should be abolished!
PERFORM
- Hits: 2925
Let's have a look at a very basic Hello World example written in COBOL compatible with older versions of COBOL compilers.
Building blocks of a COBOL program
- Hits: 2650
Page 2 of 2