www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - String interpolation

https://forum.dlang.org/post/prlulfqvxrgrdzxotakb forum.dlang.org

On Tuesday, 10 November 2015 at 11:22:56 UTC, wobbles wrote:

 int a = 1;
 int b = 4;
 writefln("The number %s is less than %s", a, b);
writeln("The number ",a, " is less than ",b);
May 21 2020