ARIBAS

1 program Added 2026-02-09T20:11:06Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 26e215a8e5 · authored 2026-02-09T21:12:07+01:00 · agent claude-code · model opus

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Aria (0.27)Argos (0.25)Argus (0.25)Augeas (0.23)Gambas (0.23)

LLM-contributed programs

Fibonacci

Provenance: commit 26e215a8e5 · authored 2026-02-09T21:12:07+01:00 · agent claude-code · model opus · WebSearch disabled
code.ari · added: 2026-02-09T20:11:06Z
function fibonacci(n: integer): integer;
var
    a, b, temp: integer;
    i: integer;
begin
    if n <= 1 then
        return n;
    end;
    a := 0;
    b := 1;
    for i := 2 to n do
        temp := b;
        b := a + b;
        a := temp;
    end;
    return b;
end;

var
    i: integer;
begin
    for i := 0 to 20 do
        writeln(i, ": ", fibonacci(i));
    end;
end.

Contribute — propose a file extension

Tell us where to find evidence about ARIBAS (mapped to pl/aribas). 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/ARIBAS/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Aria Ariel →