Previous Up Next

6.3.6  Concatenation of a sequence of words: cumSum

The cumSum command works on strings like it does on expressions by doing partial concatenation (see Section 6.40.26).


Example.
Input:

cumSum("Hello, ","is ","that ","you?")

Output:

"Hello, ","Hello, is ","Hello, is that ","Hello, is that you?

Previous Up Next