Rapira
1 program
Added 2026-02-07T12:00:00Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Рапира
Provenance: commit 4797208268 · authored 2026-02-07T22:13:55+01:00 · agent claude-code · model opus
Sources mentioning this language
5 sources · pl_id:
pl/rapiraWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | procedural · structured |
|---|---|
| Typing | dynamic |
| Designed by | Andrey Ershov |
| First appeared | 1982 |
| Influenced by | ALGOL · POP-2 · SETL |
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit 4797208268 · authored 2026-02-07T22:13:55+01:00 · agent claude-code · model opus · WebSearch disabled
proc start()
output: "Fibonacci numbers:"
nlcr
n := 10
for i from 1 to n do
output: i, ": ", fibonacci(i)
nlcr
od
end proc
fun fibonacci(n)
if n <= 0 then
return 0
fi
if n = 1 then
return 1
fi
a := 0
b := 1
for i from 2 to n do
c := a + b
a := b
b := c
od
return b
end fun
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.)