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

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.

Designed bySteve Wozniak
First appeared1976
Influenced byHP BASIC

Related languages

Applesoft BASIC (0.33)SuperBASIC (0.25)bwBASIC (0.24)Bywater BASIC (0.24)CBASIC (0.24)

LLM-contributed programs

Number Guessing Game

Provenance: commit f03c2005d5 · authored 2026-02-10T14:48:44+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-10T13:45:18.253996Z
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.)

Contribute — propose a file extension

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