String concatenation: Difference between revisions

Content added Content deleted
(Added Tailspin solution)
(Add Plain English)
Line 1,469: Line 1,469:
t = s || ' to you all';
t = s || ' to you all';
display (t);</lang>
display (t);</lang>

=={{header|Plain English}}==
Strings (and other values) can be concatenated to strings with <code>then</code>.
<lang plainenglish>To run:
Start up.
Put "hello" into a string.
Put the string then " world" into another string.
Write the string to the console.
Write the other string to the console.
Wait for the escape key.
Shut down.</lang>
{{out}}
<pre>
hello
hello world
</pre>


=={{header|PowerShell}}==
=={{header|PowerShell}}==