Print

From NSB App Studio
Revision as of 06:12, 18 February 2013 by C185driver (talk | contribs) (→‎Output)
Jump to navigation Jump to search

Print [expressionA[, expressionB[, expressionC[, ...]]]]

Description

Print writes text to the output window. Print writes up to 20 comma-delimited expressions, separating each with a tab and appending a carriage return. When used without expressions, Print, writes a blank line to the output window.

You may not see the output from this statement if you are using forms, since the forms may cover the output window.

Print output is formatted as Html: any valid Html expression may be used, including images and links.

Example

Rem Print Example
'Print writes text to the output window
Print "Hello World!"
Print
Print "The time is", Now

Output

Hello World!

The time is 8/18/1998 10:52:44 PM