leo/tests/compiler/mutability/let.leo

5 lines
89 B
Plaintext
Raw Normal View History

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