Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
S : constant String := A & B;
(def s (str a b))
string s = String.Concat(a,b);
string s = a + b;
var s = '$a$b';
var s = a + b;
s = a <> b
s = a // b
s := a + b
s = a <> b
s = a ++ b
const s = a + b;
String s = a.concat(b);
String s = a + b;
String s = String.format("%s%s", a, b);
val s = a + b
local s = a..b
$s = $a.$b;
s := a + b;
my $s = $a . $b;
s = a + b
s = a + b
let s = a + b;
let s = format!("{}{}", a, b);
s = a & b