On Monday, 24 January 2022 at 10:49:36 UTC, Dom DiSc wrote: > I would NEVER EVER declare a variable const. It's always either > mutable or immutable. I usually mark local variables `const` because it's shorter than `immutable`, and `immutable` doesn't buy me anything over `const` in those cases.