format string as described in std.format.formattedWrite
arguments to be formatted
OutBuffer b = new OutBuffer(); b.writefln!"a%sb"(16); assert(b.toString() == "a16b\n");
OutBuffer b = new OutBuffer(); b.writefln("a%sb", 16); assert(b.toString() == "a16b\n");
Formats and writes its arguments in text format to the OutBuffer, followed by a newline.