Decaf
1 program
Added 2026-02-13T15:54:05Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 0bcc372786 · authored 2026-02-13T16:54:56+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 Calculator
Provenance: commit 0bcc372786 · authored 2026-02-13T16:54:56+01:00 · agent claude-code · model sonnet · WebSearch disabled
class Program {
void main() {
int i;
int factorial;
factorial = 1;
for (i = 1; i <= 10; i = i + 1) {
factorial = factorial * i;
}
Print("Factorial of 10 is: ", factorial);
}
}