repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
jtests
/
iteration-stms.js
blob
b91b5e962ec04c6fed99dc971f3728a6f9b0b47b
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);