Espruino/tests/test_for_empty.js
2013-11-22 17:47:29 +00:00

7 lines
52 B
JavaScript

a=42;
b=0;
for (;a;) { b++; a-- }
result = b==42;