Fexl
1 program
Added 2026-02-07T14:39:27Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ae70e756d9 · authored 2026-02-07T15:40:16+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 Function
Provenance: commit ae70e756d9 · authored 2026-02-07T15:40:16+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Factorial function
\factorial==
(\fact_iter==(
\n\acc(le n 1 acc (fact_iter (sub n 1) (mul n acc)))
)
fact_iter (\ 1)
)
# Test it
say (factorial 5)
say (factorial 10)