BASIC-80

1 program Added 2026-02-08T13:59:04Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Microsoft BASIC-80, MBASIC
Provenance: commit ea4c7f8e33 · authored 2026-02-08T14:59:49+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/basic-8
LLM (this repo) · 1WikipediaWikidata · Q4834661

Related languages

MBASIC (0.69)Microsoft BASIC (0.49)Nascom BASIC (0.47)Microsoft Small Basic (0.45)WordBasic (0.43)

LLM-contributed programs

Prime Number Checker

Provenance: commit ea4c7f8e33 · authored 2026-02-08T14:59:49+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-08T13:59:04Z
10 REM BASIC-80 Prime Number Finder
20 PRINT "Enter a number to check if it is prime:"
30 INPUT N
40 IF N < 2 THEN PRINT N; "is not prime" : GOTO 110
50 IF N = 2 THEN PRINT N; "is prime" : GOTO 110
60 FOR I = 2 TO SQR(N)
70   IF N MOD I = 0 THEN PRINT N; "is not prime (divisible by"; I; ")" : GOTO 110
80 NEXT I
90 PRINT N; "is prime"
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-80 (mapped to pl/basic-8). 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-80/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← BASIC-8 basic-ap →