The Disp Command
Displays an output on the Home or I/O screen
Disp //[text],var
Menu Location
From the program editor, press [F3][2]
This command works on all calculators.
X byte(s)
The Disp command displays output in the Home App I/O screen. An example:
prgmexmp()
Prgm
Request "Enter something",var1 //Get a value for var1
Disp "var1=",var1
Pause
DelVar var1
ClrIO
DispHome
EndPrgm
Error Conditions
910 - Syntax happens when there is improper syntax/a variable was not used.
Related Commands
Credits
Credits to byobcello for the explanation and code, both were made by him. Modified for readability/corrections