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-8Related languages
LLM-contributed programs
Prime Number Checker
Provenance: commit ea4c7f8e33 · authored 2026-02-08T14:59:49+01:00 · agent claude-code · model sonnet · WebSearch disabled
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.)