BASIC-PLUS-2
1 program
Added 2026-02-10T15:44:46Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: BP2, BASIC+2
Provenance: commit 9a8f7fce01 · authored 2026-02-10T16:45: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 Number Generator
Provenance: commit 9a8f7fce01 · authored 2026-02-10T16:45:36+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 REM Fibonacci Number Generator in BASIC-PLUS-2
20 DECLARE INTEGER N, I, FIB1, FIB2, TEMP
30 PRINT "Enter the number of Fibonacci numbers to generate: ";
40 INPUT N
50 IF N < 1 THEN
60 PRINT "Please enter a positive number"
70 GOTO 30
80 END IF
90 FIB1 = 0
100 FIB2 = 1
110 PRINT "Fibonacci sequence:"
120 PRINT FIB1
130 IF N > 1 THEN PRINT FIB2
140 FOR I = 3 TO N
150 TEMP = FIB1 + FIB2
160 PRINT TEMP
170 FIB1 = FIB2
180 FIB2 = TEMP
190 NEXT I
200 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.)