for ... continue

How i can make "continue" analog in "for" loop in lua???

Well.. you'll just have to wrap it in ifs..
The below code

1
2
3
4
5
for i=1,n do
    --code1
    if <condition> then continue end
    --code2
end
views:1605 update:2011/12/30 9:10:41
corona forums © 2003-2011