leo/compiler/tests/mutability/function_input.leo

4 lines
85 B
Plaintext
Raw Normal View History

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