|
|
|
|
|
by WalterBright
1928 days ago
|
|
In C, the value pointed to by `x` cannot be changed via a write through `x`, but if there is another pointer to that value, it can be changed through that. In D, `immutable(int)* x` cannot be changed by any reference to the value. |
|