True BASIC
1 program
Added 2026-02-07T13:22:50Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: TrueBASIC
Provenance: commit caef368676 · authored 2026-02-07T14:23:25+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/true-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.
| Designed by | True BASIC · Inc · John G. Kemeny Thomas E. Kurtz |
|---|---|
| First appeared | 1983 |
| Influenced by | BASIC |
| Homepage | http://www.truebasic.com |
Related languages
LLM-contributed programs
Fibonacci Sequence Generator
Provenance: commit caef368676 · authored 2026-02-07T14:23:25+01:00 · agent claude-code · model sonnet · WebSearch disabled
! Fibonacci sequence generator
! True BASIC program
OPTION NOLET
DIM fib(20)
LET fib(1) = 0
LET fib(2) = 1
PRINT "Fibonacci Sequence:"
PRINT fib(1)
PRINT fib(2)
FOR i = 3 TO 20
LET fib(i) = fib(i-1) + fib(i-2)
PRINT fib(i)
NEXT i
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.)