leo/compiler/tests/statements/iteration_basic.leo

8 lines
111 B
Plaintext
Raw Normal View History

2020-07-31 03:11:58 +03:00
function main() {
let x = 4u32;
2020-07-17 22:59:18 +03:00
for i in 0..3 {
x -= 1;
}
2020-08-17 03:20:47 +03:00
console.assert(x == 1u32);
}