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 : String := Integer'Image (I);
(let [s (str i)])
string s = i.ToString()
var s = "$i";
s = to_string(i)
s = "#{i}"
s = Integer.to_string(i)
S = integer_to_list(I).
write (unit=s,fmt=*) i
def s = "$i".toString()
let s = show i
var s = i + "";
var s = i.toString();
String s=((Integer)i).toString();
String s = "%d".formatted(i);
String s = Integer.toString(i);
String s = String.valueOf(i);
String s = "" + i;
String s = "";
while (i != 0) {
s = i % 10 + s;
i = i / 10;
}
val s = i.toString()
(setf s (princ-to-string i))
s = tostring(i)
$s = (string)$i;
$s = "{$i}";
$s = "$i";
$s = strval($i);
Str(i,s);
my $s = "" . $i;
$s = "$i";
s = str(i)
s = i.to_s
let s = i.to_string();
let s = format!("{}", i);
val s = i.toString
(define s (number->string i))
s := i asString.
Dim myInt As Integer = 12345
Console.WriteLine(myInt.ToString)