BLISS-64
1 program
Added 2025-02-10T14:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 020d212aa4 · authored 2026-02-10T21:34:31+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
Provenance: commit 020d212aa4 · authored 2026-02-10T21:34:31+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE FACTORIAL =
BEGIN
FORWARD ROUTINE FACTORIAL;
ROUTINE FACTORIAL(N) =
BEGIN
IF .N LEQ 1
THEN 1
ELSE .N * FACTORIAL(.N - 1)
END;
ROUTINE MAIN =
BEGIN
LOCAL RESULT;
RESULT = FACTORIAL(5);
RESULT
END;
END
ELUDOM