Sets the variable name for the current calculator program.
Remarks
If you are using one of the assembly program output writers (ti73, ti82, ti83, ti85, ti86 or ti8x) you can specify one variable name per page. (Each page is output as a seperate variable with its own name).
If you are using one of the application output writers (ti73app or ti8xapp) only the variable name defined on page 0 will be used.
Example
Creating group file variables.
/* The following would create a group file containing two programs, PRGMA and PRGMB. */ .page 1 .tivariablename "PRGMA" .org $9D93 ret .page 2 .tivariablename "PRGMB" .org $9D93 ret /* Naturally, you need to be using a TI program output writing plugin for this to work. */