Sebastian McKenzie 4ea9b9c028 better exec tests
2014-10-15 14:28:51 +11:00

6 lines
98 B
JavaScript

for (let x = 1, y = x + 1; x < 10 && y != 0; x ++, y *= 2) {
if (y > 300) {
continue;
}
}