leo/compiler/tests/mutability/const.leo

5 lines
98 B
Plaintext
Raw Normal View History

2020-06-30 06:29:53 +03:00
// Constant variables are immutable by default.
function main() {
2020-07-17 22:59:18 +03:00
const a = 1u32;
a = 0;
2020-06-30 06:29:53 +03:00
}