Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display Hello World on a graphing calculator (on a screen)?

Tags:

ti-basic

I am trying to make my graphing calculator display Hello, World! on the screen. How do I do this (I want to program a program to do this, as typing alpha, letter is inefficient)?

like image 370
Coder Avatar asked Mar 07 '23 17:03

Coder


1 Answers

Use the Text( command in the draw menu.

Where X and Y are your locations:
Text(X, Y, "HELLO, WORLD")

According to catalog:
Text(row, column, text1, text2, ..., text n)

On color calculators the text color can be changed with the TextColor( command.

like image 52
Alex Bohm Avatar answered May 09 '23 01:05

Alex Bohm