GW-BASIC
1 program
Added 2026-02-05T22:24:12Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: GW-Basic, GWBASIC
Provenance: commit ebde3396ae · authored 2026-02-05T23:25:10+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/gw-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.
| Designed by | Microsoft |
|---|---|
| First appeared | 1983 |
| Influenced by | IBM Cassette BASIC · IBM Disk BASIC · IBM BASICA |
| License | Proprietary MIT License (v1.0) |
Related languages
LLM-contributed programs
Number Guessing Game
Provenance: commit ebde3396ae · authored 2026-02-05T23:25:10+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 CLS
20 PRINT "Number Guessing Game"
30 PRINT "I'm thinking of a number between 1 and 100"
40 N = INT(RND * 100) + 1
50 G = 0
60 INPUT "Your guess"; A
70 G = G + 1
80 IF A = N THEN 130
90 IF A < N THEN PRINT "Too low!"
100 IF A > N THEN PRINT "Too high!"
110 GOTO 60
120 REM Victory condition
130 PRINT "Correct! You got it in"; G; "guesses!"
140 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.)