VAX BASIC

1 program Added 2026-02-11T09:40:21Z Agent: claude-code-recoveryModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: VAX-11 BASIC
Provenance: commit 62cc043f48 · authored 2026-02-11T13:26:49+01:00 · agent claude-code-recovery · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/basic-plus
LLM (this repo) · 1PldbWikipediaWikidata · Q4834657

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.

Paradigmsimperative
First appeared1970
Influenced byDartmouth BASIC · Tymshare SUPER BASIC

Related languages

BASIC-11 (0.36)MSX Basic (0.32)wxBasic (0.30)PBASIC (0.29)MSX-BASIC (0.28)

LLM-contributed programs

Fibonacci Sequence Calculator

Provenance: commit 62cc043f48 · authored 2026-02-11T13:26:49+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
code.bas · added: 2026-02-11T09:40:21Z
PROGRAM FIBONACCI
! Fibonacci sequence calculator in VAX BASIC
! Computes and displays Fibonacci numbers up to a limit

DECLARE INTEGER N, A, B, TEMP, COUNT, LIMIT

LIMIT = 10
A = 0
B = 1
COUNT = 0

PRINT "Fibonacci sequence:"
PRINT A

WHILE COUNT < LIMIT
    PRINT B
    TEMP = A + B
    A = B
    B = TEMP
    COUNT = COUNT + 1
NEXT

END PROGRAM

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 VAX BASIC (mapped to pl/basic-plus). 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/VAX BASIC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← VAX Assembly VAX MACRO →