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-basic
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q621556

Wikipedia 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 appeared1977

Related languages

HiSoft Basic (0.35)Integer BASIC (0.33)MBASIC (0.31)AppleScript (0.29)AppGameKit (0.28)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit deec04df1f · authored 2026-02-08T15:56:56+01:00 · agent claude-code · model opus · WebSearch disabled
code.bas · license: GNU Free Documentation License 1.2 · added: 2026-02-08T14:56:25Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about Applesoft BASIC (mapped to pl/applesoft-basic). 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/Applesoft BASIC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← AppleScript applog →