286
TI-BASIC / Optimization Tips
« on: October 17, 2010, 08:01:02 am »
Hello,
I'm doing a few little and simple programs to learn TI Basic, and I've been told that optimization is the key to TI_Basic.
So, here is a simple program I made:
Now, how can I optimize it?
I want simple tips like this:
Thanks in advance!
I'm doing a few little and simple programs to learn TI Basic, and I've been told that optimization is the key to TI_Basic.
So, here is a simple program I made:
Code: [Select]
Define LibPub helloname()=
Prgm
:RequestStr "Your name:",name
:RequestStr "Your location: ",location
:RequestStr "Your calculator: ",calculator
:Text "Name:"&name&""
:Text "Location: "&location&""
:Text "Calculator: "&calculator&""
:EndPrgm
Now, how can I optimize it?
I want simple tips like this:
Code: [Select]
Output(1,1,"Hello World")
Output(1,1,"Hello World
Thanks in advance!