Sample Programs

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.

Program Editor

Before you start by making your first code, you must learn how to create a program(Make sure you are in the Calculator application). Press Menu and go to 8. Then, press 1 and 1 again. A window will pop up prompting the name of the program. Put in the name, then select the type (program or function) and press OK. Now, you are in the program editor, you can now move to the tutorials underneath.

Hello World!

The following program, when executed, will display the phrase "HELLO, WORLD!"

Text "HELLO, WORLD!"

Other Methods:

If you want to include more functionality to displaying text, you can use Disp.

Text "HELLO, WORLD!"


Is the same as:

Disp "HELLO, WORLD!"

Who's Greater?

In this code, if c is greater than d, the program will say "yes" or otherwise it will say "no".

If c>d Then
Disp "Yes"
Else
Disp "No"
EndIf

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