On Sunday, 2 October 2016 at 14:26:46 UTC, mikey wrote:
t.val = t.val + 1;
t.val += t.val;
Sorry that should have of course read:
t.val = t.val + 1;
t.val += 1;
mikey via Digitalmars-d-learn Sun, 02 Oct 2016 07:31:59 -0700
On Sunday, 2 October 2016 at 14:26:46 UTC, mikey wrote:
t.val = t.val + 1;
t.val += t.val;
Sorry that should have of course read:
t.val = t.val + 1;
t.val += 1;