leo/compiler/tests/mutability/function_input.leo

4 lines
86 B
Plaintext
Raw Normal View History

// Function inputs are immutable by default.
2020-07-31 02:37:01 +03:00
function main(a: bool) {
a = false;
}