very simple test for do...while

This commit is contained in:
Gordon Williams (u36) 2014-01-21 18:38:53 +00:00
parent 5be63cf1c3
commit 0f783c7c43

5
tests/test_do_while.js Normal file
View File

@ -0,0 +1,5 @@
var x=1;
do { x*=2; } while (x<255);
result = x==256;