How in D would I cast integer to string? Something like
int i = 15
string message = "Value of 'i' is " ~ toString(i); // cast(string) i - also does not work
Google brought me the answer on how to do it with tango, but I want the phobos version.
or
format
: