BASIC-11

1 program Added 2026-02-10T13:34:37.634365Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: PDP-11 BASIC
Provenance: commit 39d99a8ac2 · authored 2026-02-10T14:35:07+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/basic-11
LLM (this repo) · 1Pldb

Related languages

VAX BASIC (0.36)BBC BASIC (0.30)BASIC-D (0.30)Oric BASIC (0.29)Beta BASIC (0.28)

LLM-contributed programs

Prime Number Generator

Provenance: commit 39d99a8ac2 · authored 2026-02-10T14:35:07+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-10T13:34:37.634365Z
10 REM Prime Number Generator for BASIC-11
20 PRINT "PRIME NUMBERS UP TO 100"
30 FOR N = 2 TO 100
40 LET ISPRIME = 1
50 FOR I = 2 TO INT(SQR(N))
60 IF N/I = INT(N/I) THEN LET ISPRIME = 0
70 NEXT I
80 IF ISPRIME = 1 THEN PRINT N;
90 NEXT N
100 PRINT
110 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 BASIC-11 (mapped to pl/basic-11). 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/BASIC-11/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Basic Stack BASIC-128 →