Is there any difference when declaring a variable of using const vs immutable.

Example:
```
const     int a = 3;
immutable int b = 4;

const     string c = "Greetings!";
immutable string d = "D Programmers!";
```
  • const vs immutable - when dec... Brother Bill via Digitalmars-d-learn

Reply via email to