BLISS-16
1 program
Added 2026-02-10T20:09:17Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1c6e0f8e8c · authored 2026-02-10T21:10:57+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 1c6e0f8e8c · authored 2026-02-10T21:10:57+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE factorial;
ROUTINE fact(n) =
BEGIN
IF .n LEQ 1
THEN 1
ELSE .n * fact(.n - 1)
END;
ROUTINE main() =
BEGIN
LOCAL result;
result = fact(5);
RETURN .result
END;
END ELUDOM