Novah
1 program
Added 2026-02-12T10:19:40.143451Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 56a451fe42 · authored 2026-02-12T11:20:17+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 56a451fe42 · authored 2026-02-12T11:20:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
module main
pub
factorial : Int -> Int
factorial n = case n of
0 -> 1
_ -> n * factorial (n - 1)
pub
main : Unit
main = do
println "Factorial of 5 is: %(factorial 5)"
println "Factorial of 10 is: %(factorial 10)"