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

6 lines
139 B
Plaintext

// Adding the `mut` keyword makes a function variable mutable.
function main(mut a: bool) {
a = true;
console.assert(a == true);
}