print Command

Purpose:

Prints to the screen the value of variable,array or control.

Syntax:

print ...

Comments:

print is a long form of p.  Use print when you want more program clarity.

Example:

print "abc"

abc

print 4 * 3 + 1

13

ii = 3,2,1

print ii

3

2

1