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-plusWikipedia 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 | imperative |
|---|---|
| First appeared | 1970 |
| Influenced by | Dartmouth BASIC · Tymshare SUPER BASIC |
Related languages
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
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.)