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;

Reply via email to