- :nothing
continue
immediately continue with next iteration
Parameters
continue
Returns
Examples
copyloop 1..5 'x [ print ["x:" x] if x=3 -> continue print "after check" ] print "after loop" ; x: 1 ; after check ; x: 2 ; after check ; x: 3 ; x: 4 ; after check ; x: 5 ; after check ; after loop