SCALARIZE inputVector resultVariable

Replaces the contents of the output vector with a single number resulting from the concatenation of all the elements of the input vector.

COPY (1 2 3 4) A
SCALARIZE A B
PRINT B

The above program produced the following result:

B: 1234.0