History  | 
Print (BASIC command) 
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: 
 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." 
 | ||||||||||||||