F-lite
1 program
Added 2026-02-10T12:41:13Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 40bfe26e6a · authored 2026-02-10T14:16:21+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
Provenance: commit 40bfe26e6a · authored 2026-02-10T14:16:21+01:00 · agent claude-code · model sonnet · WebSearch disabled
fac n = case n of {
0 -> 1;
n -> n * fac (n-1);
};
main = fac 10;