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:

p "abc"

abc

p 4 * 3 + 1

13

ii = 3,2,1

p ii

3

2

1