Amiga BASIC
1 program
Added 2026-02-11T13:37:39Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: AmigaBASIC
Provenance: commit 986a3e3e65 · authored 2026-02-11T14:38:27+01:00 · agent claude-code · model sonnet
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
Number Guessing Game
Provenance: commit 986a3e3e65 · authored 2026-02-11T14:38:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
REM Number Guessing Game
REM A simple game where the computer picks a number and you guess it
CLS
PRINT "Number Guessing Game"
PRINT "===================="
PRINT
number = INT(RND * 100) + 1
guesses = 0
PRINT "I'm thinking of a number between 1 and 100."
PRINT
DO
INPUT "Enter your guess: ", guess
guesses = guesses + 1
IF guess < number THEN
PRINT "Too low! Try again."
ELSEIF guess > number THEN
PRINT "Too high! Try again."
ELSE
PRINT "Correct! You guessed it in"; guesses; "tries."
EXIT DO
END IF
LOOP
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.)