String concatenation: Difference between revisions

Content added Content deleted
(Added solution for Action!)
(add BQN)
Line 422: Line 422:
set string2=%string% World
set string2=%string% World
echo %string2%</lang>
echo %string2%</lang>

=={{header|BQN}}==
<code>∾</code>(Join) will concatenate two strings together.

<lang bqn>str ← "Hello "
newstr ← str ∾ "world"
•Show newstr</lang>
<lang bqn>"Hello world"</lang>


=={{header|Bracmat}}==
=={{header|Bracmat}}==