String concatenation: Difference between revisions

no edit summary
(Added Wren)
No edit summary
Line 950:
 
[[File:LV_strcat.png]]
 
=={{header|Lambdatalk}}==
In Lambdatalk writing {def name a sequence of words} replaces the sequence of words by the given name in the code string. The name is a word and is not evaluated. Bracketing a name between two curly braces returns its related value. And concatenating named strings is simply done by writing names between curly braces and separated by spaces.
<lang Scheme>
{def christian_name Albert}
-> christian_name
{def name de Jeumont-Schneidre}
-> name
 
{christian_name} {name}
-> Albert de Jeumont-Schneidre
</lang>
 
=={{header|Lang5}}==