LBasic

1 program Added 2026-03-13T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: lbasic, L-Basic
Provenance: commit 847573cc33 · authored 2026-03-13T08:04:46+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

GLBasic (0.40)TBasic (0.33)XBasic (0.33)Liberty BASIC (0.32)GW-BASIC (0.32)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 847573cc33 · authored 2026-03-13T08:04:46+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.bas · added: 2026-03-13T10:00:00Z
' LBasic - Sieve of Eratosthenes
' Find all prime numbers up to 100

DIM sieve(100)
FOR i = 2 TO 100
    sieve(i) = 1
NEXT i

FOR i = 2 TO 10
    IF sieve(i) = 1 THEN
        FOR j = i*i TO 100 STEP i
            sieve(j) = 0
        NEXT j
    END IF
NEXT i

PRINT "Prime numbers up to 100:"
count = 0
FOR i = 2 TO 100
    IF sieve(i) = 1 THEN
        PRINT i
        count = count + 1
    END IF
NEXT i
PRINT "Total primes found: "; count

Contribute — propose a file extension

Tell us where to find evidence about LBasic (mapped to pl/lbasic). 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/LBasic/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← lazyml Lbj →