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-basicRelated languages
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
! 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.)