JOVIAL J73
1 program
Added 2026-02-10T12:00:00Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: J73, JOVIAL-J73
Provenance: commit 1cb2bc96c0 · authored 2026-02-11T13:26:22+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Sum of Integers
Provenance: commit 1cb2bc96c0 · authored 2026-02-11T13:26:22+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
START:
PROC MAIN;
ITEM COUNT U 32;
ITEM TOTAL U 32;
ITEM I U 32;
COUNT = 10;
TOTAL = 0;
FOR I = 1 TO COUNT;
TOTAL = TOTAL + I;
END;
WRITE(TOTAL);
END MAIN;
TERM