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-11Related languages
LLM-contributed programs
Prime Number Generator
Provenance: commit 39d99a8ac2 · authored 2026-02-10T14:35:07+01:00 · agent claude-code · model sonnet · WebSearch disabled
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.)