Click or drag to resize

QQOut Function (Usual)

X#
Display the results of one or more expressions in the terminal window to the console.

Namespace:  XSharp.RT
Assembly:  XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax
 FUNCTION QQOut(
	uValueList PARAMS USUAL[]
) AS VOID
Request Example View Source

Parameters

uValueList
Type: Usual
A comma-separated list of expressions of any data type to display to the console.
If QQOut() is specified without arguments, nothing displays.

Return Value

Type: 
Remarks
QQOut() is the same as QOut() except that it creates the ?? command and displays the results of uValueList at the current Row() and Col() position.
For more information, see QOut().
Examples
This example displays the values of 3 expressions that are separated by commas:
X#
1QQOut("Hello", 20, TODAY())
2// Hello     20        12/17/2006
This example uses QQOut() with AEval() to list the contents of a literal array to the console:
X#
1LOCAL aElements := {1, 2, 3, 4, 5}
2AEval(aElements, {|element| QQOut(element)})
See Also