That was a nice overview, but all of the information is readily available in the books that come with the calculators and from other sources online.
I did not know about adding -1 as the first parameter in a text( function, thanks for that.
Also, do you know if it is possible to access other symbols that assembly programs can (like lowercase, @, #, etc).
Finally, can I delete just a single element from a list?
For example L1 = {1, 2, 3, 0, 4}.
If I want to remove the 0 then I would have to use a loop to go through and save all non-zero numbers to another list and then save it back to L1', since delvar L1(4) will delete the entire contents, not just that particular value.