Integer BASIC
1 program
Added 2026-02-10T13:45:18.253996Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Apple Integer BASIC
Provenance: commit f03c2005d5 · authored 2026-02-10T14:48:44+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/integer-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 | Steve Wozniak |
|---|---|
| First appeared | 1976 |
| Influenced by | HP BASIC |
Related languages
LLM-contributed programs
Number Guessing Game
Provenance: commit f03c2005d5 · authored 2026-02-10T14:48:44+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 REM NUMBER GUESSING GAME
20 REM INTEGER BASIC FOR APPLE II
30 PRINT "THINK OF A NUMBER FROM 1 TO 100"
40 LET L=1
50 LET H=100
60 LET G=(L+H)/2
70 PRINT "IS YOUR NUMBER ";G
80 PRINT "TYPE + IF HIGHER, - IF LOWER, = IF CORRECT"
90 INPUT A$
100 IF A$="=" THEN 160
110 IF A$="+" THEN 130
120 LET H=G-1
125 GOTO 140
130 LET L=G+1
140 IF L<=H THEN 60
150 PRINT "YOU CHEATED!"
155 GOTO 170
160 PRINT "I GUESSED IT!"
170 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.)