R:BASE

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: RBASE, R-BASE
Provenance: commit ddb74d12aa · authored 2026-03-17T04:37:19+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

dBase (0.20)EASE (0.18)Superbase (0.17)XBLite (0.16)Harbour (0.15)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit ddb74d12aa · authored 2026-03-17T04:37:19+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.cmd · added: 2026-03-17T10:00:00Z
-- R:BASE command file: Fibonacci sequence
-- Demonstrates SET VAR, WHILE loop, and WRITE commands

SET VAR vA INTEGER = 0
SET VAR vB INTEGER = 1
SET VAR vTemp INTEGER = 0
SET VAR vCount INTEGER = 1

WRITE 'Fibonacci Sequence (first 10 terms):'
WHILE #vCount <= 10 THEN
  WRITE 'F(' & CTXT(#vCount) & ') = ' & CTXT(#vA)
  SET VAR vTemp INTEGER = #vA + #vB
  SET VAR vA INTEGER = #vB
  SET VAR vB INTEGER = #vTemp
  SET VAR vCount INTEGER = #vCount + 1
ENDWHILE

WRITE 'Calculation complete.'

Contribute — propose a file extension

Tell us where to find evidence about R:BASE (mapped to pl/r_base). 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/R:BASE/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← r4 ra →