ML/370
1 program
Added 2026-02-11T12:43:49Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: ML370
Provenance: commit 8443a795b6 · authored 2026-02-11T13:44:26+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 8443a795b6 · authored 2026-02-11T13:44:26+01:00 · agent claude-code · model sonnet · WebSearch disabled
fun fact 0 = 1
| fact n = n * fact (n - 1)
val result = fact 5