repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
v2
/
test
/
p80.ck
blob
1285500f632e3c8b119ff47c586f51405a6150bb
1
// do-while
2
3
0 => int j;
4
0 => int i;
5
6
do {
7
1 +=> j;
8
1 +=> i;
9
} while ( i < 5 );
10
11
if ( j == 5 ) <<<"success">>>;