repo.or.cz
/
vox.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
moved back to old acc
[vox.git]
/
test
/
syntax
/
dowhile.vx
blob
06679baa9fda5f96dd1e4ff69c7af02266817e34
1
2
3
/* do { ... } while(...) behaves just like it does in C and C++ */
4
5
i := 10
6
do
7
{
8
println("i = ", i)
9
} while(i--)