Post #1
1 votes
Sam
Reputation
5
Posts: 28
Joined: Jul 1, 2026, 2:30 PM
Posted: Jul 29, 2026, 8:31 AM
I see names like 1000-READ-FILE. and also SECTION headers. Are paragraphs just labels I PERFORM?
I see names like 1000-READ-FILE. and also SECTION headers. Are paragraphs just labels I PERFORM?
Paragraph = named chunk of code ending at the next paragraph name. You PERFORM it.
Section = bigger group of paragraphs. PERFORM section-name runs everything in that section until the next section.
Most modern code is paragraph-heavy. Numbered names like 1000- / 2000- are just shop style for order.
So 1000-INIT. is a paragraph name, not a function with parameters. That took me a minute.
You must be signed in to reply to this thread