Previous Up Next

4.2.5  Concatenation of a sequence of words

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

Example

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

Previous Up Next