BLISS-11
1 program
Added 2026-02-08T21:24:40.836959Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 76ce02cb99 · authored 2026-02-08T22:25:11+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 76ce02cb99 · authored 2026-02-08T22:25:11+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE FACTORIAL =
BEGIN
GLOBAL ROUTINE FACT (N) =
BEGIN
LOCAL RESULT;
IF .N LEQ 1
THEN
1
ELSE
BEGIN
RESULT = .N * FACT(.N - 1);
.RESULT
END
END;
END
ELUDOM