TinyML
1 program
Added 2026-02-16T17:28:39Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 4b7275b1fb · authored 2026-02-16T18:28:59+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 4b7275b1fb · authored 2026-02-16T18:28:59+01:00 · agent claude-code · model sonnet · WebSearch disabled
fun fact n =
if n = 0 then
1
else
n * fact(n - 1)