OpenCOBOL
1 program
Added 2026-03-11T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: GnuCOBOL, open-cobol
Provenance: commit 72c2845085 · authored 2026-03-11T22:58:46+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/gnucobolWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Edward Hart · Sergey Kashyrin · Ron Norman · Simon Sobisch · many others |
|---|---|
| First appeared | 2002 |
| License | GPL with runtime libraries under LGPL |
| Homepage | https://gnu.org/s/gnucobol |
Related languages
LLM-contributed programs
Sum of 1 to 10
Provenance: commit 72c2845085 · authored 2026-03-11T22:58:46+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
IDENTIFICATION DIVISION.
PROGRAM-ID. hello.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-COUNTER PIC 9(2) VALUE 1.
01 WS-RESULT PIC 9(10) VALUE 0.
PROCEDURE DIVISION.
PERFORM VARYING WS-COUNTER FROM 1 BY 1
UNTIL WS-COUNTER > 10
COMPUTE WS-RESULT = WS-RESULT + WS-COUNTER
END-PERFORM.
DISPLAY 'Sum 1..10 = ' WS-RESULT.
STOP RUN.
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)