Converge
1 program
Added 2026-02-06T08:39:34Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 74270ecfc1 · authored 2026-02-06T09:40:59+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/convergeRelated languages
LLM-contributed programs
Factorial
Provenance: commit 74270ecfc1 · authored 2026-02-06T09:40:59+01:00 · agent claude-code · model sonnet · WebSearch disabled
func factorial(n):
if n <= 1:
return 1
else:
return n * factorial(n - 1)
func main():
for i := 1.to(10):
Sys::println(Sys::format("factorial(~d) = ~d", i, factorial(i)))
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)