On Thursday, 14 May 2020 at 09:49:15 UTC, wjoe wrote:
Is there an easy way to print an int in hexadecimal, octal or binary representation ?The documentation on pragma(msg, ...) and a quick web search didn't provide an answer.
for simple hex/binary/etc printing use import std.conv; pragma(msg, i.to!string(16)); where you can replace 16 with your target base.You can also use format as in the previous reply if you want more formatting control