BLISS-32
1 program
Added 2026-02-10T11:07:25Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: BLISS32, Common BLISS
Provenance: commit 787676874a · authored 2026-02-10T12:08:36+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 787676874a · authored 2026-02-10T12:08:36+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE factorial =
BEGIN
FORWARD ROUTINE
fact : NOVALUE;
ROUTINE fact(n) =
BEGIN
IF .n LEQ 1
THEN
RETURN 1
ELSE
RETURN .n * fact(.n - 1);
END;
ROUTINE main : NOVALUE =
BEGIN
LOCAL result;
result = fact(5);
END;
END
ELUDOM