mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
9 lines
104 B
Plaintext
9 lines
104 B
Plaintext
function main() {
|
|
let x = 4u32;
|
|
|
|
{
|
|
x = 5u32;
|
|
}
|
|
|
|
console.assert(x == 5u32);
|
|
} |