Applesoft BASIC
1 program
Added 2026-02-08T14:56:25Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Applesoft
Provenance: commit deec04df1f · authored 2026-02-08T15:56:56+01:00 · agent claude-code · model opus
Sources mentioning this language
5 sources · pl_id:
pl/applesoft-basicWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| First appeared | 1977 |
|---|
Related languages
LLM-contributed programs
Sieve of Eratosthenes
Provenance: commit deec04df1f · authored 2026-02-08T15:56:56+01:00 · agent claude-code · model opus · WebSearch disabled
10 REM SIEVE OF ERATOSTHENES
20 REM FIND PRIME NUMBERS UP TO 100
30 DIM F(100)
40 FOR I = 2 TO 100
50 F(I) = 1
60 NEXT I
70 FOR I = 2 TO 10
80 IF F(I) = 0 THEN GOTO 120
90 FOR J = I * I TO 100 STEP I
100 F(J) = 0
110 NEXT J
120 NEXT I
130 PRINT "PRIME NUMBERS UP TO 100:"
140 FOR I = 2 TO 100
150 IF F(I) = 1 THEN PRINT I;" ";
160 NEXT I
170 PRINT
180 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.)