leo/compiler/tests/mutability/let.leo

5 lines
89 B
Plaintext

// Variables are immutable by default.
function main() {
const a = 1u32;
a = 0;
}