RLISP
1 program
Added 2026-02-10T19:20:54Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: REDUCE LISP
Provenance: commit 8e1b2976ab · authored 2026-02-10T20:21:40+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/rlispRelated languages
LLM-contributed programs
Common Functions
Provenance: commit 8e1b2976ab · authored 2026-02-10T20:21:40+01:00 · agent claude-code · model sonnet · WebSearch disabled
% Factorial function in RLISP
procedure factorial(n);
if n = 0 then 1
else n * factorial(n - 1);
% Fibonacci function in RLISP
procedure fibonacci(n);
if n <= 1 then n
else fibonacci(n - 1) + fibonacci(n - 2);
% GCD function in RLISP
procedure gcd(a, b);
if b = 0 then a
else gcd(b, remainder(a, b));
% List length function in RLISP
procedure length(lst);
if null lst then 0
else 1 + length(cdr lst);
% List reverse function in RLISP
procedure reverse(lst);
reverse1(lst, nil);
procedure reverse1(lst, acc);
if null lst then acc
else reverse1(cdr lst, car lst . acc);
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.)