1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-05-31 08:31:27 +00:00

10 lines
86 B
TypeScript
Raw Normal View History

2017-11-29 00:18:14 +01:00
for (let i: i32 = 0; i < 10; ++i) {
;
2017-11-29 00:18:14 +01:00
}
for (i = 0; i < 10; ++i) {
;
2017-11-29 00:18:14 +01:00
}
for (;;) {
;
2017-11-29 00:18:14 +01:00
}