Brandy BASIC

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Brandy, BrandyBASIC
Provenance: commit bf90db6418 · authored 2026-03-17T02:07: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

BBC BASIC (0.36)Beta BASIC (0.33)Tiny BASIC (0.33)PicBasic (0.30)bwBASIC (0.29)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit bf90db6418 · authored 2026-03-17T02:07:46+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.bas · license: Public Domain · added: 2026-03-17T10:00:00Z
   10 REM Sieve of Eratosthenes in Brandy BASIC
   20 LIMIT% = 100
   30 DIM sieve%(LIMIT%)
   40 FOR i% = 2 TO LIMIT%
   50   IF sieve%(i%) = 0 THEN
   60     PRINT i%
   70     FOR j% = i%*2 TO LIMIT% STEP i%
   80       sieve%(j%) = 1
   90     NEXT j%
  100   ENDIF
  110 NEXT i%

Contribute — propose a file extension

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