Standard BASIC

1 program Added 2026-02-10T20:03:54Z Agent: claude-code-recoveryModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: ANSI BASIC, Full BASIC, ISO BASIC
Provenance: commit 3784222eda · authored 2026-02-11T13:26:45+01:00 · agent claude-code-recovery · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/full-basic
LLM (this repo) · 1WikipediaWikidata · Q112151318

Related languages

Full BASIC (0.37)Decimal BASIC (0.36)ANS Forth (0.26)Standard Pascal (0.24)Small Basic (0.24)

LLM-contributed programs

Quadratic Equation Solver

Provenance: commit 3784222eda · authored 2026-02-11T13:26:45+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
code.bas · added: 2026-02-10T20:03:54Z
100 PRINT "Quadratic Equation Solver"
110 PRINT "Solves ax^2 + bx + c = 0"
120 PRINT
130 INPUT "Enter coefficient a: ", A
140 INPUT "Enter coefficient b: ", B
150 INPUT "Enter coefficient c: ", C
160 LET D = B * B - 4 * A * C
170 IF D < 0 THEN 250
180 IF D = 0 THEN 220
190 LET X1 = (-B + SQR(D)) / (2 * A)
200 LET X2 = (-B - SQR(D)) / (2 * A)
210 PRINT "Two roots: x1 ="; X1; ", x2 ="; X2
215 GOTO 260
220 LET X = -B / (2 * A)
230 PRINT "One root: x ="; X
240 GOTO 260
250 PRINT "No real roots (discriminant is negative)"
260 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.)

Contribute — propose a file extension

Tell us where to find evidence about Standard BASIC (mapped to pl/full-basic). 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/Standard BASIC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Stan Standard Chess →