2010-03-08 Jérémie Laval <jeremie.laval@gmail.com>
[mono.git] / mcs / jtests / iteration-stms.js
1 var x = 0;
2 var y = 1;
3
4 while (x)
5     print ("while stm failed");
6
7 while (y)
8     print ("while stm succeeded"), y = y - 1;
9
10
11 do
12     print ("hello do-while stm"), x = 0;
13 while (x);