leo/compiler/tests/mutability/let_mut.leo

7 lines
138 B
Plaintext
Raw Normal View History

// Adding the `mut` keyword makes a variable mutable.
2020-07-31 02:37:01 +03:00
function main() {
2020-07-17 22:59:18 +03:00
let mut a = 1u32;
a = 0;
2020-08-17 05:14:26 +03:00
console.assert(a == 0u32);
}