p Command
Purpose:
Prints to the screen the value of variable,array or control. This method is the short form of the print command
Syntax:
p ...
Comments:
p is a short form of print. Since the print command is used extensively when writing hex-basic programs a short form is provided to save typing.
Example:
abc
p 4 * 3 + 1
13
p ii
3
2
1