Easy way to format int in pragma msg ?

wjoe invalid at example.com
Thu May 14 12:11:29 UTC 2020


On Thursday, 14 May 2020 at 10:58:34 UTC, WebFreak001 wrote:
> 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

That's great. Thanks for the fast reply. To both of you :)


More information about the Digitalmars-d-learn mailing list