TI Extended BASIC

1 program Added 2026-02-10T14:28:33.901140Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: TI-99/4A Extended BASIC, TI XB
Provenance: commit f4b7ee4efd · authored 2026-02-10T15:29:34+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

BBx (0.29)TI-BASIC (0.29)Extended Color BASIC (0.27)QBX (0.24)Tiny BASIC (0.21)

LLM-contributed programs

Number Guessing Game

Provenance: commit f4b7ee4efd · authored 2026-02-10T15:29:34+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-10T14:28:33.901140Z
100 REM Number Guessing Game
110 RANDOMIZE
120 LET TARGET=INT(RND*100)+1
130 LET TRIES=0
140 PRINT "I'm thinking of a number between 1 and 100"
150 PRINT
160 INPUT "Enter your guess: ":GUESS
170 LET TRIES=TRIES+1
180 IF GUESS=TARGET THEN 240
190 IF GUESS<TARGET THEN PRINT "Too low! Try again."
200 IF GUESS>TARGET THEN PRINT "Too high! Try again."
210 GOTO 160
240 PRINT "Correct! You got it in";TRIES;"tries!"
250 END

Contribute — propose a file extension

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