Dartmouth BASIC
1 program
Added 2026-02-08T21:33:42Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Dartmouth BASIC, Original BASIC
Provenance: commit 102245536f · authored 2026-02-08T22:34:34+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/dartmouth-basic-2Wikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | imperative · array |
|---|---|
| Designed by | John G. Kemeny · Thomas E. Kurtz |
| First appeared | 1964 |
| Influenced by | FORTRAN · ALGOL |
Related languages
LLM-contributed programs
Number Guessing Game
Provenance: commit 102245536f · authored 2026-02-08T22:34:34+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 PRINT "GUESS THE NUMBER GAME"
20 PRINT "I'M THINKING OF A NUMBER FROM 1 TO 100"
30 LET N = INT(100 * RND(1)) + 1
40 LET G = 0
50 PRINT "ENTER YOUR GUESS";
60 INPUT A
70 LET G = G + 1
80 IF A = N THEN 130
90 IF A < N THEN 110
100 PRINT "TOO HIGH! TRY AGAIN"
110 IF A > N THEN GOTO 50
120 PRINT "TOO LOW! TRY AGAIN"
125 GOTO 50
130 PRINT "CORRECT! YOU GUESSED IT IN"; G; "TRIES"
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.)