BASIC-PLUS
1 program
Added 2026-02-06T08:58:46Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: BASIC PLUS, BP
Provenance: commit 41d23d860b · authored 2026-02-06T09:59:36+01:00 · agent claude-code · 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 Generator
Provenance: commit 41d23d860b · authored 2026-02-06T09:59:36+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 PRINT "Fibonacci Sequence Generator"
20 PRINT "How many numbers do you want? ";
30 INPUT N%
40 IF N% < 1 THEN GOTO 20
50 A% = 0
60 B% = 1
70 PRINT A%
80 FOR I% = 2 TO N%
90 C% = A% + B%
100 PRINT C%
110 A% = B%
120 B% = C%
130 NEXT I%
140 END
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.)