APL*PLUS
1 program
Added 2026-02-11T12:00:00Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: APLPLUS, APL PLUS
Provenance: commit fa72238c98 · authored 2026-02-11T13:26:02+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 Function
Provenance: commit fa72238c98 · authored 2026-02-11T13:26:02+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
⍝ Factorial function
fact←{⍵=0:1 ⋄ ⍵×∇⍵-1}
⍝ Test cases
fact 5
fact 10