String concatenation: Difference between revisions

add BQN
(Added solution for Action!)
(add BQN)
Line 422:
set string2=%string% World
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}}==
236

edits