leo/compiler/tests/mutability/let_mut.leo
2020-07-17 12:59:18 -07:00

7 lines
127 B
Plaintext

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