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/urbiWikipedia 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 by | Gostai · Aldebaran Robotics |
|---|---|
| First appeared | 2003 |
| License | BSD |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit e20e5c78b5 · authored 2026-02-09T20:43:18+01:00 · agent claude-code · model opus · WebSearch disabled
// 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.)