Hacker News new | ask | show | jobs
by UltraSane 40 days ago
Ok. How about

Set x to x + 5

1 comments

That’s pretty much COBOL syntax: https://www.ibm.com/docs/en/debug-for-zos/17.0.x?topic=comma...

Except that COBOL doesn’t allow an arithmetic expression there, so you have to write

    COMPUTE X = X + 5.
instead. ;)