The stately := operator feature proposal

Rob T alanb at ucora.com
Fri May 31 09:38:33 PDT 2013


The := syntax looks just like the += *= ~= syntax, which has 
completely different meanings, so for some people it will only 
serve to confuse them more than they already are.

BTW D does have instances of multiple ways of doing the same 
things.

Eg

private:
    int x = 1;

private int x = 1;

private
{
   int x = 1;
}

--rt


More information about the Digitalmars-d mailing list