What's the difference between const-declared variable and
immutable-declared variable?

module a;

const(int) a;
immutable(int) b;

void main()
{
}

Reply via email to