mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-21 09:11:39 +03:00
4 lines
86 B
Plaintext
4 lines
86 B
Plaintext
// Const function input are immutable.
|
|
function main(const a: bool) {
|
|
a = false;
|
|
} |