leo/compiler/tests/mutability/const.leo

5 lines
91 B
Plaintext
Raw Normal View History

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