Espruino/tests/test066.js
Gordon Williams f3d6e0bc83 First commit
2013-09-26 14:39:04 +01:00

6 lines
89 B
JavaScript

// super simple while test
var i=0,j=5;
while (j-->0) { print(j); i++;}
result = i==5;