Click or drag to resize

PRINT Statement

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
PRINT Statement

The PRINT statement provides a way of displaying information to the user during the Alchemy process by writing one or more expressions (concatenated with the '+' operator) to the console. PRINT terminates the line after the data has been output.

Note Note

PRINT is functionally equivalent to the ? statement.

Syntax

Alchemy
PRINT expr;

Alternatively (see ? Statement):

Alchemy
? expr;

Nomenclature

exprSome expression to output.

Example

Alchemy
$version = "2010.4";
...
PRINT "Importing USA data from MyDataProvider";
PRINT "Version number " + $version;

alternatively:

Alchemy
$version = "2010.4";
...
? "Importing USA data from MyDataProvider";
? "Version number " + $version;

Output to console:

Importing USA data from MyDataProvider

Version number 2010.4