DIP 1027---String Interpolation---Community Review Round 1

Walter Bright newshound2 at digitalmars.com
Wed Dec 11 10:41:33 UTC 2019


 > printf("I ate %s and %d totalling %s fruit.\n", apples, bananas, apples + 
bananas);

Gaah, that should be:

   printf("I ate %d and %d totalling %d fruit.\n", apples, bananas, apples + 
bananas);


More information about the Digitalmars-d mailing list