Idiom #55 Convert integer to string
Create the string representation s (in radix 10) of the integer value i.

Create the string representation s (in radix 10) of the integer value i.
def s = "$i".toString()
my $s = "" . $i;
let s = show i
s = i.to_s
S : String := Integer'Image (I);
char s[0x1000]={}; itoa(i,s,10);
(let [s (str i)])
auto s = std::to_string(i);
string s = i.ToString()
string s = i.to!string;
var s = "$i";
s = Integer.to_string(i)
s = to_string(i)
s = "#{i}"
S = integer_to_list(I).
write (unit=s,fmt=*) i
s := strconv.Itoa(i)
s := strconv.FormatInt(i, 10)
s := fmt.Sprintf("%d", i)
def s = "$i".toString()
var s = i + "";
var s = i.toString();
String s = "" + i;
String s = ""; while (i != 0) { s = i % 10 + s; i = i / 10; }
String s = Integer.toString(i);
String s = String.valueOf(i);
String s=((Integer)i).toString();
String s = "%d".formatted(i);
val s = i.toString()
(setf s (princ-to-string i))
s = tostring(i)
NSString *s=@(i).description;
$s = (string)$i;
$s = "$i";
$s = "{$i}";
$s = strval($i);
Str(i,s);
var _s: String; _i: Integer; begin _s := IntToStr(_i); end.
$s = "$i";
my $s = "" . $i;
s = str(i)
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)