moved back to old acc
[vox.git] / test / syntax / dowhile.vx
blob06679baa9fda5f96dd1e4ff69c7af02266817e34
3 /* do { ... } while(...) behaves just like it does in C and C++ */
5 i := 10
6 do
8     println("i = ", i)
9 } while(i--)