Text Concatenation Operator: &

Revision as of 05:57, 24 April 2007 by ReneeB (talk | contribs) (adding doc status category)


Then syntax

A & B

evaluates A and B, coerces their element values to text, and concatenates the result.

Examples

'Hello' & ' ' & 'world' → 'Hello world'
5 & 2 → '52'
['a','b'] & 'c' → ['ac','bc']
Comments


You are not allowed to post comments.