Count the coins: Difference between revisions

Updated third D entry
(added ocaml)
(Updated third D entry)
Line 362:
struct Ucent { /// Simplified 128-bit integer (like ucent).
ulong hi, lo;
//static immutable one = Ucent(0, 1);
static immutable Ucent one = { 0, 1 };
 
void opOpAssign(string op="+")(const ref Ucent y) pure nothrow {