The
Print statement formats a string and passes the result to the host
application. The result of that depends upon how that application
decides to deal with the data passed to it. Print accepts multiple
items to print separated by either a semi-colon or a comma.
Semi-colon causes the following item to be concatenated with the
previous item, comma inserts a tab character between items. The
CRLF constant can be used to insert line breaks in the resulting
string. The traditional "?" is also provided as a synonym for
Print.
Syntax:
Print Data1[,|; Data2 ...]