83 and 68k Did You Know

We're glad you came by, but you might find what you're looking for elsewhere.

TI-Basic Developer is not the site it once was. While its information on commands and other calculator features remains almost second-to-none, its forum, archives, and even hosting service, Wikidot, have been decaying for years. The calculator community would love to see what you're working on, or help you in your next coding adventure, but TI-Basic Developer is no longer the place to do it.

Instead, you should head over to Cemetech (primarily American) or TI-Planet (primarily international). Both are active, well-established forums with their own archives, chatrooms, reference material, and abundant coding tools and resources. We'll see you there, we hope.

Did you know…

…that the ok system variable checks if a dialog was cancelled? (edit)

…that the 26 one-letter variables a-z are much smaller to access? (edit)

…that the © character can be used to enter comments in programs? (edit)

…that ending a variable name with an underscore _ will make solve() and cSolve() assume it's complex? (edit)

…that you can treat strings as always-undefined variables in symbolic math? (edit)

…that it is actually sometimes better to leave on the closing parentheses on the For( loop? (edit)

…that a memory leak is caused when you use a Goto/Lbl within a loop or If conditional (anything that has an End command) to jump out of that control structure before the End command is reached? (edit)

…that you can omit the closing parentheses, quote, square bracket, curly brace, etc. at the end of a command or function? (edit)

…that while using seq(, the calculator can still interpret keypresses and store them to getKey? (edit)

…that you can use tanh(E9X to compute the sign of X? (edit)

…that Line( has an optional fifth argument that, if zero, will erase the pixels on a line, and, on color calculators, will change the color of the line? (edit)

…that you can replace the "Done" message that appears after a program is finished running by placing an expression, some text, or just a quote on the last line of your program? (edit)

…that you can use rand( to create a time delay similar to the Wait command on the TI-84+CE? (edit)

…that you can use multiple text arguments at the end of one Text( command to write, for example, Text(R,C,"Score",S)? (edit)

…that you can draw with different plot marks using Pt-On(X,Y,#)? (edit)

…that you can save memory when displaying text by replacing words such as "If" and "Then" with the appropriate commands? (edit)

…that "0<X<10" will actually compare "0<X" first, and compares the result (0 or 1) to 10, so "0<X and X<10" should be used instead? (edit)

…that using ΔList( together with cumSum( will return a list with its first element removed? (edit)

…that there are 256 picture variables built-in to the TI-83+ calculator, even though the calculator only shows 10 picture variables? (edit)

…that you can enable the faster circle drawing flag on the TI-83/84/+/SE by placing {i after the last argument of the Circle( command? (edit)

.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Noncommercial 2.5 License.