Risa/Asir
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Asir, Risa
Provenance: commit fb792f662e · authored 2026-03-17T05:14:49+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 fb792f662e · authored 2026-03-17T05:14:49+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
def fact(n){
if(n==0) return 1;
else return n*fact(n-1);
}
print(fact(10));
end$