JOVIAL J3
1 program
Added 2026-02-11T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: J3
Provenance: commit e1667f72df · authored 2026-02-11T14:47:00+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial Calculator
Provenance: commit e1667f72df · authored 2026-02-11T14:47:00+01:00 · agent claude-code · model sonnet · WebSearch disabled
PROGRAM FACTORIAL;
BEGIN
ITEM N,FACT,I;
N = 5;
FACT = 1;
FOR I = 1 TO N;
FACT = FACT * I;
END;
WRITE(FACT);
END.