mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
8 lines
111 B
Plaintext
8 lines
111 B
Plaintext
function main() {
|
|
let x = 4u32;
|
|
for i in 0..3 {
|
|
x -= 1;
|
|
}
|
|
|
|
console.assert(x == 1u32);
|
|
} |