Espruino/tests/test_blockless_while_structure.js
Michael Duerinckx 7f5308590b Rename numbered tests to something more descriptive - closes #16
test077 is the only one I really couldn't figure out what it was meant
to test.
2014-03-01 22:15:28 +00:00

6 lines
89 B
JavaScript

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