BLISS-10
1 program
Added 2026-02-08T21:45:45Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b90012a5ca · authored 2026-02-08T22:46:35+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 b90012a5ca · authored 2026-02-08T22:46:35+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE FACTORIAL =
BEGIN
FORWARD ROUTINE
FACT;
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