|
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 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 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 multiple text arguments at the end of one Text( command to write, for example, Text(R,C,"Score",S)? (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 there are 256 picture variables built-in to the TI-83+ calculator, even though the calculator only shows 10 picture variables? (edit)
.