QQOut Function (Usual) | |
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 AS USUAL
) AS VOID
public static void QQOut(
Usual uValueList
)
Request Example
View SourceParameters
- 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:
1QQOut("Hello", 20, TODAY())
2
This example uses QQOut() with AEval() to list the contents of a literal array to the console:
1LOCAL aElements := {1, 2, 3, 4, 5}
2AEval(aElements, {|element| QQOut(element)})
See Also