MLton
1 program
Added 2026-02-10T15:38:37Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 7c1238d855 · authored 2026-02-10T16:39:12+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 7c1238d855 · authored 2026-02-10T16:39:12+01:00 · agent claude-code · model sonnet · WebSearch disabled
fun fact 0 = 1
| fact n = n * fact (n - 1)
val () = print (Int.toString (fact 10) ^ "\n")