Disco
1 program
Added 2026-02-13T13:28:48Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 2a94c7aafd · authored 2026-02-13T14:29:22+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 2a94c7aafd · authored 2026-02-13T14:29:22+01:00 · agent claude-code · model sonnet · WebSearch disabled
fact : N -> N
fact(0) = 1
fact(n) = n * fact(n - 1)
-- Compute factorial of 10
main : N
main = fact(10)