Adenine
1 program
Added 2026-02-27T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b6fbef0d4b · authored 2026-02-27T13:19:31+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial
Provenance: commit b6fbef0d4b · authored 2026-02-27T13:19:31+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
function factorial x
if (== 1 x)
return 1
else
return (* x (factorial (- x 1)))