Purpose
Displays output to the FirstClass client's output window.
Syntax
Print [PrintExpression1] [,|; PrintExpression2...] [,|;]
One Print command can output any number of expressions. To specify a string as an expression, enclose it in double quotes. You can use the following characters with this command:
Character |
Position |
Function |
, |
Between expressions. |
Separates expressions with tabs. Tab stops are every 14 characters. |
; |
Between expressions. |
Causes each expression to appear immediately after the previous expression. |
, or ; |
At end of line. |
Suppresses the carriage return that is normally output at the end for each Print command line. Any subsequent Print command output will appear on the same line. |
A Print command without a PrintExpression outputs a carriage return.
Example
Print "Welcome to my application"
Print 1, 2, 3, 4, 5 'prints each number in a separate print zone
Print "These two lines are ";
Print "output as one."
|