mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
6 lines
114 B
Plaintext
6 lines
114 B
Plaintext
// Function input are mutable by default.
|
|
function main(a: bool) {
|
|
a = true;
|
|
|
|
console.assert(a == true);
|
|
} |