V has global consts, they are immutable, but can be initialized with complex expressions, for example
`const x = foo()`
There's a bug that allows to trick the compiler and modify the const via another variable, it's a one line fix, and will be fixed today.
Global mutable variables are only allowed with `-enable-globals` and are supposed to be used only in low level code, like drivers and kernels.