QPL
1 program
Added 2026-02-10T20:35:35Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Query and Process Language
Provenance: commit dc44d6c4a4 · authored 2026-02-11T13:26:37+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
Factorial Calculator
Provenance: commit dc44d6c4a4 · authored 2026-02-11T13:26:37+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
PROGRAM FACTORIAL
INTEGER N, RESULT, I
N = 5
RESULT = 1
DO I = 1 TO N
RESULT = RESULT * I
END DO
PRINT RESULT
END PROGRAM