<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3AOptimize_General</id>
	<title>TI-BASIC:Optimize General - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3AOptimize_General"/>
	<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Optimize_General&amp;action=history"/>
	<updated>2026-05-13T22:48:42Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>http://learn.cemetech.net/index.php?title=TI-BASIC:Optimize_General&amp;diff=801&amp;oldid=prev</id>
		<title>Maintenance script: Initial automated import</title>
		<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Optimize_General&amp;diff=801&amp;oldid=prev"/>
		<updated>2016-02-24T18:19:18Z</updated>

		<summary type="html">&lt;p&gt;Initial automated import&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;You can remove closing parentheses, braces, and quotes at the end of a line of code. The one &amp;#039;&amp;#039;rare&amp;#039;&amp;#039; case you would keep an end parenthesis if if you are dealing with an If conditional directly after a [[TI-BASIC:For|For(]] loop which is detailed on the For( command.&lt;br /&gt;
&lt;br /&gt;
 :Output(3,2,&amp;quot;Hello&amp;quot;)&lt;br /&gt;
 can be&lt;br /&gt;
 :Output(3,2,&amp;quot;Hello&lt;br /&gt;
&lt;br /&gt;
You can also remove closing parentheses, braces, brackets, and quotes that are before a store command.&lt;br /&gt;
&lt;br /&gt;
 :&amp;quot;Hello&amp;quot;→Str1&lt;br /&gt;
 can be&lt;br /&gt;
 :&amp;quot;Hello→Str1&lt;br /&gt;
&lt;br /&gt;
Rearrange the group of expressions with the most closing parentheses, braces, brackets, and quotes so that they are at the end of the line.&lt;br /&gt;
&lt;br /&gt;
 :If 7/(A+B)=2&lt;br /&gt;
 can be&lt;br /&gt;
 :If 2=7/(A+B&lt;br /&gt;
&lt;br /&gt;
Keep your label and list names as short as possible. You ideally want them to be one character in length.&lt;br /&gt;
&lt;br /&gt;
 :Lbl AA&lt;br /&gt;
 :∟HIGH&lt;br /&gt;
 can be&lt;br /&gt;
 :Lbl A&lt;br /&gt;
 :∟H&lt;br /&gt;
&lt;br /&gt;
When displaying text, always look for words that can be replaced with the respective command. The commands are much smaller than writing out the word.  In this example, the command [[TI-BASIC:Return|Return]] is used in place of writing out the word.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 :&amp;quot;RETURN→Str1&lt;br /&gt;
 can be&lt;br /&gt;
 :&amp;quot;Return→Str1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can change all of your text to uppercase. Making your text look nice comes with a price. Lowercase letters are two bytes each instead of one byte like uppercase letters. This can really be costly if your program has a lot of text in it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 :Disp &amp;quot;Hello&lt;br /&gt;
 can be&lt;br /&gt;
 :Disp &amp;quot;HELLO&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can often shorten text by removing or rewording some of it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 :Output(3,2,&amp;quot;Too Low&lt;br /&gt;
 can be&lt;br /&gt;
 :Output(3,2,&amp;quot;Higher[[Category:TI-BASIC]]&lt;br /&gt;
[[Category:TIBD]]&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>