Full BASIC

1 program Added 2026-03-10T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ANSI Full BASIC, ANSI BASIC, X3.113
Provenance: commit 0cc1111ce5 · authored 2026-03-10T22:13:17+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

Standard BASIC (0.37)Minimal BASIC (0.36)Decimal BASIC (0.25)Small Basic (0.22)Atari BASIC (0.18)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 0cc1111ce5 · authored 2026-03-10T22:13:17+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.bas · license: Public Domain · added: 2026-03-10T12:00:00Z
! Sieve of Eratosthenes in Full BASIC
! ANSI Full BASIC (X3.113-1987)

PROGRAM Sieve

LET limit = 100
DIM flag(limit)

FOR i = 2 TO limit
    LET flag(i) = 1
NEXT i

FOR i = 2 TO INT(SQR(limit))
    IF flag(i) = 1 THEN
        LET j = i * i
        DO WHILE j <= limit
            LET flag(j) = 0
            LET j = j + i
        LOOP
    END IF
NEXT i

PRINT "Primes up to"; limit
FOR i = 2 TO limit
    IF flag(i) = 1 THEN PRINT i;
NEXT i
PRINT

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 Full 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/Full BASIC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Full 0 Full Stack →