Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
I find it worse that some implementations have e.g. DISPLAY as a "block" (e.g. DISPLAY whatever END-DISPLAY; alternatively terminated with a .) and some don't even understand END-DISPLAY.
Btw. "." is the original way to end statements, before END- was introduced. -
@sbiewald If it was consistent I wouldn't care. But we have several multi thousand line program that sometimes omit the end if and sometimes use it.
-
I worked for 1.5 years with Cobol. And I didn’t even have the right to use “advanced” features like calls and returns. Everything needed to be done with GOTOs. Because other devs (age average of 60, I was 23) couldn’t understand the concept.
I decided to purge these 1.5 tears from my resume. Put personal projects instead. One of which was : A cobol code generator from a simple WYSIWG tools I made to design the flow. -
Such mixed feelings about color. I truly miss 88 levels. Don't miss the absence of good tooling.
-
@orseji
We use numbered blocks
10000-
20000-
30000-
When methods meet to go in-between they take the half. Works okay.
Related Rants
COBOL is something I use at work. Typically, you see IF blocks like this
IF condition
Stuff
END-IF.
But the END-IF part if actually optional. You can just use a period and it does the same thing.
IF condition
Stuff.
Many headaches if not caught when reading.
rant
cobol
wk194