2009-11-24 Jb Evain <jbevain@novell.com>
[mcs.git] / jtests / iteration-stms.js
blobb91b5e962ec04c6fed99dc971f3728a6f9b0b47b
1 var x = 0;
2 var y = 1;
4 while (x)
5     print ("while stm failed");
7 while (y)
8     print ("while stm succeeded"), y = y - 1;
12     print ("hello do-while stm"), x = 0;
13 while (x);