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/rlisp
LLM (this repo) · 1Pldb

Related languages

Reduce (0.41)Spice Lisp (0.32)Bone Lisp (0.29)Lisp (0.28)Le Lisp (0.24)

LLM-contributed programs

Common Functions

Provenance: commit 8e1b2976ab · authored 2026-02-10T20:21:40+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.lsp · license: BSD-2-Clause · added: 2026-02-10T19:20:54Z
% 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.)

Contribute — propose a file extension

Tell us where to find evidence about RLISP (mapped to pl/rlisp). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/RLISP/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← RLEflakes rlmeta →