digitalmars.D.learn - String interpolation
- Patrick Schluter (3/6) May 21 2020 writeln("The number ",a, " is less than ",b);
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








Patrick Schluter <Patrick.Schluter bbox.fr>