Urbi

1 program Added 2026-02-09T19:42:38Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: urbiscript
Provenance: commit e20e5c78b5 · authored 2026-02-09T20:43:18+01:00 · agent claude-code · model opus

Sources mentioning this language

3 sources · pl_id: pl/urbi
LLM (this repo) · 1WikipediaWikidata · Q2084386

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Designed byGostai · Aldebaran Robotics
First appeared2003
LicenseBSD

Related languages

Urbiscript (0.75)URScript (0.50)TiScript (0.41)ChaiScript (0.37)MiniScript (0.37)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit e20e5c78b5 · authored 2026-02-09T20:43:18+01:00 · agent claude-code · model opus · WebSearch disabled
code.u · license: GNU Free Documentation License · added: 2026-02-09T19:42:38Z
// Fibonacci sequence in urbiscript
// From Rosetta Code: https://rosettacode.org/wiki/Fibonacci_sequence#urbiscript

function fibonacci(n)
{
  if (n < 2)
    return n;
  var a = 0;
  var b = 1;
  for (var i = 2; i <= n; i++)
  {
    var c = a + b;
    a = b;
    b = c;
  };
  return b;
};

for (var i = 0; i <= 16; i++)
  echo("fibonacci(%d) = %d" % [i, fibonacci(i)]);

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 Urbi (mapped to pl/urbi). 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/Urbi/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Ur/Web Urbiscript →