Espruino/tests/test_do_while_semi.js
2014-11-12 09:02:29 +00:00

9 lines
119 B
JavaScript

function test(){
var i=0;
do{
console.log(i++);
} while (i < 10)
}
test();
result=1;