leo/compiler/tests/mutability/let_mut.leo
2020-07-30 16:37:01 -07:00

7 lines
132 B
Plaintext

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