pcExprToProp
pcExprToProp(txfl_argument) =>l_typeValue/nil
Description
Evaluates the argument and returns a list containing the data type and value of the result.
Arguments
Value Returned
Examples
a = 1.5
b = 1.6
pcExprToProp(a + b + 3) => ("float" 6.1)
Returns the data type (floating-point number) and value (6.1) of the result of evaluating the specified argument.
pcExprToProp( '( 2 3 ) ) => "ilList" (2 3)
Returns the data type (list) and value (a list containing two numbers, 2 and 3).
Return to top