Walter Bright schrieb:
> Craig Black wrote:
>> void setX(int nx) const { x = nx; }
>
> That should work, but at the moment:
>
> const void setX(int nx) { x = nx; }
>
> does work.
Why do we need the suffix "const" anyway ? Isnt unambiguity a virtue ?