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/rapira
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q4117140

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.

Paradigmsprocedural · structured
Typingdynamic
Designed byAndrey Ershov
First appeared1982
Influenced byALGOL · POP-2 · SETL

Related languages

RAPID (0.22)RapidQ (0.21)RapidBATCH (0.15)RapydScript (0.12)Mira (0.11)

LLM-contributed programs

Fibonacci

Provenance: commit 4797208268 · authored 2026-02-07T22:13:55+01:00 · agent claude-code · model opus · WebSearch disabled
code.rap · added: 2026-02-07T12:00:00Z
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.)

Contribute — propose a file extension

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