leo/compiler/tests/mutability/let_mut.leo
2020-08-16 19:14:26 -07:00

7 lines
138 B
Plaintext

// Adding the `mut` keyword makes a variable mutable.
function main() {
let mut a = 1u32;
a = 0;
console.assert(a == 0u32);
}