Technology
 

Output(

From TI-BASIC Wiki - The free TI-BASIC encyclopedia

:Output(row,column,String
:Output(row,column,value

Prints the specified text starting at the indicated line and space on the Calculator Screen. The text will continue to the left, and wrap down if the text to be displayed or the variable continues off the screen. For example, Output(1,8,"1234567890123456 will start in the middle of the first line, and continue until the middle of the second line.

[edit] Location

  • PRGM
  • I/O
  • 6:Output(

[edit] Example

:ClrHome
:Output(1,1,"HELLO

This program will print the word HELLO on the first line at the first space.