Print
Previous  Next

Description: Prints characters onto the screen. A comma will print a tab and a semi-colon will display the next set of characters directly after the last.

     Syntax:
     
Print <Expression> [, <Expression>...]

Part
Description
<Expression>
Optional. The expression you want displayed on the screen. If the expression is omitted, a carriage return will be inserted instead.

Example:

        x = 5
        Print x*2