leo/compiler/tests/mutability/let_mut.leo

7 lines
127 B
Plaintext
Raw Normal View History

// Adding the `mut` keyword makes a variable mutable.
function main() -> u32 {
2020-07-17 22:59:18 +03:00
let mut a = 1u32;
a = 0;
2020-07-17 22:59:18 +03:00
return a
}