leo/compiler/tests/mutability/let.leo

5 lines
83 B
Plaintext

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