What's the difference between const-declared variable and immutable-declared variable?
module a;
const(int) a;
immutable(int) b;
void main()
{
}
What's the difference between const-declared variable and immutable-declared variable?
module a;
const(int) a;
immutable(int) b;
void main()
{
}