On 30 November 2011 09:27, Walter Bright <[email protected]> wrote:
> The compiler is passing the test suite now, the only failure is in the unit
> tests of std.bigint. Anyhow, any brave souls who want to try it out should
> have a go!

If anyone tries it, please help me fix the bigint failure by telling
me the result of:

import std.bigint;
import std.stdio;

string toHex(BigInt x)
{
    string outbuff="";
    void sink(const(char)[] s) { outbuff ~= s; }
    x.toString(&sink, "%x");
    return outbuff;
}

void main()
{
   writeln(toHex(BigInt("0x1234567890123456789")));
}

> _______________________________________________
> dmd-internals mailing list
> [email protected]
> http://lists.puremagic.com/mailman/listinfo/dmd-internals
>
_______________________________________________
dmd-internals mailing list
[email protected]
http://lists.puremagic.com/mailman/listinfo/dmd-internals

Reply via email to