AmigaBasic
1 program
Added 2026-02-26T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Amiga Basic
Provenance: commit c904e210be · authored 2026-02-26T15:37:49+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/amigabasicWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Microsoft |
|---|---|
| First appeared | 1985 |
Related languages
LLM-contributed programs
FizzBuzz
Provenance: commit c904e210be · authored 2026-02-26T15:37:49+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
' FizzBuzz in AmigaBasic
FOR n% = 1 TO 20
s$ = ""
IF (n% MOD 3) = 0 THEN s$ = s$ + "Fizz"
IF (n% MOD 5) = 0 THEN s$ = s$ + "Buzz"
IF s$ = "" THEN s$ = STR$(n%)
PRINT s$
NEXT n%
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.)