Russell
1 program
Added 2026-02-06T12:17:26Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a11ebd0d3f · authored 2026-02-06T13:18:10+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/russellRelated languages
LLM-contributed programs
Factorial
Provenance: commit a11ebd0d3f · authored 2026-02-06T13:18:10+01:00 · agent claude-code · model sonnet · WebSearch disabled
(* Factorial function in Russell *)
let rec factorial(n: int): int =
if n <= 1 then
1
else
n * factorial(n - 1)
in
factorial(5)
end
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)