mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-19 08:02:14 +03:00
9 lines
108 B
Plaintext
9 lines
108 B
Plaintext
|
function main() {
|
||
|
let mut x = 4u32;
|
||
|
|
||
|
{
|
||
|
x = 5u32;
|
||
|
}
|
||
|
|
||
|
console.assert(x == 5u32);
|
||
|
}
|