You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When declaring varialbes you normally don't declare it const, and it's normally never necessary.
When variables have to be declared mutable explicitly errors may be found more easily.
This wouldn't be as in C. Is it important, that the language is like C, even if some other design may be better?
The text was updated successfully, but these errors were encountered:
const by default could also be implemented by macros, but this may be difficult, becuase it's not clear, where we have types and where not, expecially for more complicated types like (array-of 2 int) (which should not expand to (const (array-of (const 2) (const int))) if they are not defined as mutable) or most concept-macro types
When declaring varialbes you normally don't declare it
const
, and it's normally never necessary.When variables have to be declared mutable explicitly errors may be found more easily.
This wouldn't be as in C. Is it important, that the language is like C, even if some other design may be better?
The text was updated successfully, but these errors were encountered: