Ok, so this is my first TI-BASIC tutorial. In this tutorial you will learn how to create a very simple slot machine, so you can entertain yourself in math class
Try it out
Ok, first create a new program called 'SLOT MACHINE'. Hit the enter key.
Now input the following code.
CODE
:ClrHome
:Lbl 1
:Output(1,1,"--Slot Machine--")
:Output(2,1,randInt(0,9,1))
:Output(2,4,randInt(0,9,1))
:Output(2,7,randInt(0,9,1))
:Goto 1
:Lbl 1
:Output(1,1,"--Slot Machine--")
:Output(2,1,randInt(0,9,1))
:Output(2,4,randInt(0,9,1))
:Output(2,7,randInt(0,9,1))
:Goto 1
**EDIT** (Sorry, I didn't have enough time to finish this yesterday)
Ok, now exit the program editing screen, and run the program.
You have created your first TI-Basic slot machine! You may be wondering how to stop the slots. Simply hit the 'On' button while the program is running. It will force the program to error. It will ask you to quit, do it. After you quit, you will see whatever numbers you stopped the slot machine on. To run it again, simply hit enter.

